Started working on Admin Dashboard, setup layout and the nav-bar

This commit is contained in:
Vari
2024-03-16 04:31:11 +01:00
parent cd9d96d421
commit fceab708aa
15 changed files with 248 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers\Web\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;
class DashboardController extends Controller
{
public function dashboard()
{
View::share('title', 'Dashboard');
return view('admin.dashboard');
}
}