python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Laravel css replace through js not working on non-base(Sub routes)
I have created a theme changer toggle switch using JavaScript. I replaced between two .css files one is for dark theme and another is for white theme. My theme switcher is working for every base route...
Md Sakiluzzaman
Votes: 0
Answers: 1
Customise the "method is not supported for this route" error handling in Laravel
Route::post('order', 'OrderController@store')->name('order');
When I browse to the URL http://127.0.0.1:8000/order it shows the error:
The GET method is not supported for this route. Supported me...
Kepler b452
Votes: 0
Answers: 1
How to send an array in a route and receive this
I want to send an array to route as parameter and receive this. Here is my code
$list = array_filter($list);
return redirect()->route('ucs.mail', serialize($list));
And my route is:
Route::get('cu...
mahbub
Votes: 0
Answers: 1
Laravel 9 - Show middleware in artisan route:list
How to display/show middleware used in Laravel routing?
php artisan route:list
keatflame
Votes: 0
Answers: 1