This commit is contained in:
ct
2025-06-13 09:44:18 +08:00
parent 8d6e86ebb3
commit 2fd4d42aec
54 changed files with 9917 additions and 184 deletions

View File

@@ -2,12 +2,16 @@
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');
}