feat: add dashboard page with Nuxt UI components and verified middleware
This commit is contained in:
14
app/Http/Controllers/DashboardController.php
Normal file
14
app/Http/Controllers/DashboardController.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Inertia\Inertia;
|
||||
use Inertia\Response;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
public function __invoke(): Response
|
||||
{
|
||||
return Inertia::render('Dashboard');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user