first commit, after modifying client section
This commit is contained in:
15
app/Http/Controllers/DashboardController.php
Executable file
15
app/Http/Controllers/DashboardController.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
$data = [
|
||||
'page_title' => 'Dashboard'
|
||||
];
|
||||
return view('dashboard.index', $data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user