Files
memefast/app/Http/Controllers/FrontHomeController.php
2025-06-21 22:01:04 +08:00

19 lines
375 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') && env('COMING_SOON_ENABLED', true)) {
return Inertia::render('comingsoon');
}
return Inertia::render('home/home');
}
}