Add simple test route to debug 500 errors
This commit is contained in:
parent
f2183392e2
commit
a3c1ffd3b3
1 changed files with 5 additions and 0 deletions
|
|
@ -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');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue