Creating a new project | #03 - Setting up authentication
If you haven't read the last post you can find it here
**TLDR** I am building a web application from scratch using PHP Laravel and learning in the process, the application will be a Recipe sharing app that I will build on overtime.
In the last post, I spoke about setting the environment up. Now I've been starting on the backend.
After creating a basic startup Laravel project I wanted to add Authentication straight off the bat. The ability for a user to register and login is the bases of the whole application, so I thought it was important to get that right from the get-go.
Laravel makes creating authentication super easy and can create using one simple Artisan command
When running this command, Laravel does all the hard work for you, even done to creating the routes for you.
Auth::routes();
All the views are creaed:
Within 10 minutes I have auth all setup and working, I am now apple to register/log in. The Next step is to get the CRUD functionality built for users to create posts ('recipes'). This is something that will start basic and be built on overtime.
In the next post, I will show you the app in its current state. I'm focusing on the backend more than the front end styling currently, so it won't look anything special haha!
Thanks for reading and following the process, I'd love to hear from you. Feel free to drop a comment below. Feedback is key to my learning!
Leave Creating a new project | #03 - Setting up authentication to:
Read more #dev posts
Best Posts From SlayerKM
We have not curated any of slayerkm's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From SlayerKM
- Food shopping sucks! - Day in the life vlog!
- 10 Kill Warzone Win! - SlayerKM Stream Clips
- First Day in the life 3speak vlog!
- Warzone Trio Dub!!!! - SlayerKM Stream Clips
- 3Speak Introduction Video
- I Found this DDaily gem!
- Never let me drive haha - SlayerKM Stream Clip
- It's been a while...
- Bruen is back! - Warzone Steam Clips!
- Creating a new project | #07 - Adding functionality