4.2 Lesson 4 Class Notes
4.2 Lesson 4 Class Notes
1. What is Authentication?
•Authentication Implementation involves minimal implementation of all of Laravel's authentication features, including login, registration,
password reset, email verification, and password confirmation
•Was the first authentication method used with versions 6 and 7 and even 8
•Can be used with version 10 as well.
•Authentication done with the artisan auth:make command If you've worked with Laravel for a while, you'll remember this command.
•The functionality that auth:make provided was removed and put into a separate package called laravel/ui.
•
•Command used: composer require laravel/ui
4. Authentication via Breeze
•Laravel Jetstream provides more robust features and additional frontend technology stacks as compared to Laravel Breeze
• For beginners, its recommended that you learn Breeze Laravel Breeze before graduating to Laravel Jetstream.
7. The Jetstream Package
•Provides a beautifully designed application scaffolding for Laravel and includes login, registration, email verification, two-factor authentication,
session management, API support via Laravel Sanctum, and optional team management.
•Designed using Tailwind CSS and offers your choice of Livewire or Inertia driven frontend scaffolding.