Answers for "post method in laravel 8 with function"

PHP
1

set route name laravel

Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');
Route::get('/novanoticia', ['as' => 'route_name', 'uses' => 'HomeController@getNovaNoticia']);
Posted by: Guest on October-06-2020
0

laraval routing

Route::redirect('/here', '/there');
Posted by: Guest on January-15-2021

Code answers related to "post method in laravel 8 with function"

Browse Popular Code Answers by Language