Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Named route for "About us" page which is placed in "/resources/views/other" folder
  2. Route::get('/about', ['as' => 'about', function () {
  3. return view('other.about');
  4. }]);
  5.  
  6. // Resourceful route
  7. Route::resource('entries', 'EntryController');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement