Clearing branch for fresh Inertia + Vue setup

This commit is contained in:
2025-09-06 10:04:11 +02:00
parent c8ab71b92a
commit 4cb4859fe3
157 changed files with 0 additions and 19938 deletions

View File

@@ -1,17 +0,0 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Auth\AuthenticatedSessionController;
// Landing page for non-logged-in users with placeholder stats
Route::get('/', function () {
$gamesCount = 10; // Placeholder
$usersCount = 100; // Placeholder
$biggestJackpot = 5000; // Placeholder
return view('landing.index', compact('gamesCount', 'usersCount', 'biggestJackpot'));
})->name('home');
// Explicit logout route for Filament user panel
Route::post('/logout', [AuthenticatedSessionController::class, 'destroy'])
->middleware('auth')
->name('filament.user.auth.logout');