mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-14 22:25:23 -05:00
Started working on Admin Dashboard, setup layout and the nav-bar
This commit is contained in:
16
dist/app/Http/Controllers/Web/Admin/DashboardController.php
vendored
Normal file
16
dist/app/Http/Controllers/Web/Admin/DashboardController.php
vendored
Normal 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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user