Files
memefast/app/Http/Controllers/FrontHomeController.php
2025-06-13 09:44:18 +08:00

19 lines
339 B
PHP

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