prepare controllers
This commit is contained in:
13
app/Http/Controllers/Dashboard/DashboardIndexController.php
Normal file
13
app/Http/Controllers/Dashboard/DashboardIndexController.php
Normal 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');
|
||||
}
|
||||
}
|
13
app/Http/Controllers/Dashboard/DashboardUsersController.php
Normal file
13
app/Http/Controllers/Dashboard/DashboardUsersController.php
Normal 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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user