Laravel - Routing
Identify the error in this route naming code:
Route::post('/submit', 'SubmitController@store')->name = 'submit.form';Route::post('/submit', 'SubmitController@store')->name = 'submit.form';->name('name'), not by assignment.->name = 'submit.form', which is invalid syntax; it should be ->name('submit.form').15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions