https://github.com/natthasath/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.
https://github.com/natthasath/demo-laravel-breeze
10x authentication breeze laravel php
Last synced: 3 months ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/natthasath/demo-laravel-breeze
- Owner: natthasath
- Created: 2024-01-23T09:11:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-06T06:43:14.000Z (9 months ago)
- Last Synced: 2025-01-09T02:52:11.085Z (5 months ago)
- Topics: 10x, authentication, breeze, laravel, php
- Language: PHP
- Homepage: https://laravel.com/docs/master/starter-kits#laravel-breeze
- Size: 114 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎉 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.


### 🚀 Setup
- Create Project
```shell
composer create-project laravel/laravel example-app
```- Install Package
```shell
composer require laravel/breeze --dev
```- Configure Environment
```shell
cp .env.example .env
```- Migrate
```
php artisan breeze:install
php artisan migrate
npm install
npm run dev
```### 🏆 Run
- [http://localhost:8000/](http://localhost:8000/) username : `admin` password : `admin`
```shell
php artisan serve
```