Laravel - Basics and Architecture
This Laravel code has an error:
What is the problem here?
Route::post('/submit', function () {
return view('submit');
});
Route::post('/submit', function () {
return 'Submitted!';
});What is the problem here?
