Files
memefast/app/Http/Controllers/FrontHomeController.php
2025-06-08 04:39:38 +08:00

15 lines
197 B
PHP

<?php
namespace App\Http\Controllers;
use Inertia\Inertia;
class FrontHomeController extends Controller
{
public function index()
{
return Inertia::render('home/home');
}
}