feat: add SPA Blade shell and catch-all route
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -7,3 +7,6 @@ Route::middleware(['auth', 'verified'])->group(function (): void {
|
||||
});
|
||||
|
||||
require __DIR__.'/settings.php';
|
||||
|
||||
// SPA catch-all — must be last
|
||||
Route::get('/{any}', fn () => view('app'))->where('any', '.*')->name('spa');
|
||||
|
||||
Reference in New Issue
Block a user