14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Inertia\Inertia;
|
|
|
|
class AdminDashboardController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('admin/dashboard');
|
|
}
|
|
}
|