Add simple test route to debug 500 errors

This commit is contained in:
TheMaddax 2025-12-17 21:21:50 -07:00
parent f2183392e2
commit a3c1ffd3b3

View file

@ -8,6 +8,11 @@ use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
// Test route - simple response
Route::get('/test', function () {
return response()->json(['status' => 'ok', 'message' => 'Laravel is working!']);
});
// Public home page - Court Docket
Route::get('/', [HomeController::class, 'index'])->name('home');