File "DashboardController.php"
Full Path: /home/bettaeza/flyinsyria.com/.well-known/Dashboard/Controllers/DashboardController.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Dashboard\Controllers;
use Illuminate\Support\Facades\Auth;
use Modules\AdminController;
class DashboardController extends AdminController
{
public function __construct()
{
}
public function index()
{
return View('Dashboard::index');
}
}