How to make Auth in laravel custom and default auth?
Laravel is a powerful and advanced label framework of php, if you are new in php, you can facing problem to make authentication. i am sowing some steps to make default and custom auth in laravel.
Some steps to create laravel application and make default auth:
- To install new laravel project:
- laravel new blog
- after install new laravel application
- cd blog
- php artisan make:auth
- Configure database, then
- php artisan migrate
- To start the laravel server:
- php artisan serve
- after migrating you have created user,password_reset and migration table.
Now go to browser and hit url http://127.0.0.1:8000
Post a Comment