Problem solved
Route::any('{all?}', 'HomeController@index') ->where('all', '.+');
Yes but how can take and parameters like...
Route::any('{all?}', 'Admin\AdminController', function ($any) {
print_r($any); outout //admin/customers/edit
})->where('all', '.+');
Oh! This is right it's ok
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community