https://github.com/natthasath/demo-laravel-breeze-form
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-form
10x breeze form 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-form
- Owner: natthasath
- Created: 2024-03-20T06:10:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-20T02:06:25.000Z (about 1 year ago)
- Last Synced: 2025-01-09T02:52:11.389Z (5 months ago)
- Topics: 10x, breeze, form, laravel, php
- Language: PHP
- Homepage: https://laravel-news.com/laravel-breeze-now-with-dark-mode
- Size: 117 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎉 DEMO Laravel Breeze Form
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
```