0PricingLogin
PHP Academy · Lesson

Authentication with Laravel Breeze

Scaffold login, register, and password reset flows in minutes.

What is Laravel Breeze?

Laravel Breeze is a minimal authentication scaffold that provides login, registration, password reset, and email verification out of the box.

Installing Breeze

Install via Composer, then publish and run the installation command.

$ composer require laravel/breeze --dev
$ php artisan breeze:install blade
$ npm install && npm run dev
$ php artisan migrate

All lessons in this course

  1. Authentication with Laravel Breeze
  2. Protecting Routes with Middleware
  3. Gates: Simple Authorization Checks
  4. Policies: Model-Based Authorization
← Back to PHP Academy