14 lines
202 B
PHP
14 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Inertia\Inertia;
|
||
|
|
||
|
class DashboardController extends Controller
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
return Inertia::render('Dashboard/Index');
|
||
|
}
|
||
|
}
|