store/app/Http/Controllers/Admin/DashboardController.php

16 lines
277 B
PHP

<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Inertia\Inertia;
use Inertia\Response;
class DashboardController extends Controller
{
public function index(): Response
{
return Inertia::render('admin/Dashboard');
}
}