0👍
Consider a fallback route:
Route::fallback('HomeController@index');
Any unknown route will be passed to this fallback route. Any known routes (like to your APIs) will remain untouched.
Source:stackexchange.com
0👍
Consider a fallback route:
Route::fallback('HomeController@index');
Any unknown route will be passed to this fallback route. Any known routes (like to your APIs) will remain untouched.