15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class DashboardController extends Controller
|
|
{
|
|
public function __invoke(): Response
|
|
{
|
|
return Inertia::render('Dashboard');
|
|
}
|
|
}
|