Created
September 30, 2019 15:33
-
-
Save ffmit/09e21315e2660c4b592e8e967f933c70 to your computer and use it in GitHub Desktop.
Laravel Routes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Named route for "About us" page which is placed in "/resources/views/other" folder | |
Route::get('/about', ['as' => 'about', function () { | |
return view('other.about'); | |
}]); | |
// Resourceful route | |
Route::resource('entries', 'EntryController'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment