Back to the routes

Now that we have a main layout template that we can extend and re-use, we can start to create the individual routes of our application at app/Http/routes.php, along with the different views that will display the application data.

The overview page

This is the index page that is going to display all of the cats using the cats.index view. We will also re-use this view for the second route where cats are filtered by breed, since both the routes are almost identical. Note that Laravel expects you to use the dot notation (cats.index and not cats/index) to refer to a view located inside a subdirectory:

Route::get('cats', function() { $cats = Furbook\Cat::all(); return view('cats.index')->with('cats', $cats); }); Route::get('cats/breeds/{name}', ...

Get Laravel 5 Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.