prepare controllers

This commit is contained in:
albert
2024-11-08 02:29:09 +01:00
parent 15196c79de
commit 46d1d616f8
3 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers\Dashboard;
use App\Http\Controllers\Controller;
class DashboardIndexController extends Controller
{
public function create(): View
{
return view('dashboard.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers\Dashboard;
use App\Http\Controllers\Controller;
class DashboardIndexController extends Controller
{
public function create(): View
{
return view('dashboard.users');
}
}