Best laravel framework open-source packages.

Demo laravel breeze

Laravel Breeze is a lightweight, minimalistic starter kit for Laravel, providing pre-built authentication scaffolding, views, and controllers to help developers quickly set up user registration, login, and password reset functionality in their Laravel applications.
Updated 3 weeks ago

🎉 DEMO Laravel Breeze

Laravel Breeze is a lightweight, minimalistic starter kit for Laravel, providing pre-built authentication scaffolding, views, and controllers to help developers quickly set up user registration, login, and password reset functionality in their Laravel applications.

version rating uptime

🚀 Setup

  • Create Project
composer create-project laravel/laravel example-app
  • Install Package
composer require laravel/breeze --dev
  • Configure Environment
cp .env.example .env
  • Migrate
php artisan breeze:install
 
php artisan migrate
npm install
npm run dev

🏆 Run

php artisan serve