How to Use Laravel Breeze: A Simple and Lightweight Authentication Scaffolding
Laravel Breeze is powered by Blade and Tailwind. It is a simple and easy-to-use package used to include authentication scaffolding in web apps.
Join the DZone community and get the full member experience.
Join For FreeLaravel Breeze is an authentication scaffolding package released by the Laravel team:
“Breeze provides a minimal and simple starting point for building a Laravel application with authentication. Styled with Tailwind, Breeze publishes authentication controllers and views to your application that can be easily customized based on your own application’s needs.” - GitHub Page
To get started using Breeze, all you need to do is to create a new Laravel app and then run:
xxxxxxxxxx
composer require laravel/breeze
php artisan breeze:install
It even comes with tests for your application:
For more details on Laravel Breeze, check out the GitHub repo and you can start using it today.
You can see Breeze in action in the video below:
Opinions expressed by DZone contributors are their own.
Comments