0👍
I needed to add this to web.php
:
// SPA Route
Route::get('{any}', function () {
return view('_layouts.main');
})->where('any', '.*');
Source:stackexchange.com
0👍
I needed to add this to web.php
:
// SPA Route
Route::get('{any}', function () {
return view('_layouts.main');
})->where('any', '.*');