Writing a Blog in Laravel
Sep 8, 2018 · 2 min read
I have added a series of posts describing how to write a simple blog. I have demonstrated the most basic features Laravel provides. These posts are for php developers that are thinking of starting development in Laravel. The code I wrote for these post are in this repo.
Here is the list of posts in the series.
- Writing a Blog in Laravel: App Strucuture: Describes the app structure of a typical laravel project
- Writing a Blog in Laravel: Work Flow: Describes a work flow for beginners
- Writing a Blog in Laravel: Login: Describes the authentication in Laravel
- Writing a Blog in Laravel: Create a Post — Part 1 : Covers controllers, migrations, models and views
- Writing a Blog in Laravel: Create a Post — Part 2: Covers how to handle post request from a simple form
- Writing a Blog in Laravel: Validation: Covers validation using Form Requests
- Writing a Blog in Laravel: Model Events and Observers: Covers model events
- Writing a Blog in Laravel: View Layouts and Pagination: Covers view layouts, adding custom attributes to models and pagination
- Writing a Blog in Laravel: App Policy: Covers App Policy to handle permissions
These are post for beginners and those who would like to get their feet wet in Laravel. There are a lot of things that I have intentionally left out so that you can improve on. For eg: there is no Logout button. At the end of these posts, you should be able to add one.
Laravel provides a lot of other great features. Let me know if there are things you would like to learn. I will try and explain as much as I can.
Happy coding!