# Flowieons Phase 1 Setup Guide

## Prerequisites
- PHP 8.2+
- Composer
- MySQL 8+
- Node.js 20+

## Installation
1. `composer install`
2. `cp .env.example .env`
3. Configure DB credentials in `.env`
4. `php artisan key:generate`
5. `php artisan migrate`
6. `php artisan db:seed`
7. `php artisan serve`

## Breeze Requirement
This phase includes Breeze-style auth flow (`login`, `logout`, session auth, guest/auth route groups).
If you want official Breeze scaffolding once PHP/Composer are available:
1. `composer require laravel/breeze --dev`
2. `php artisan breeze:install blade`
3. Keep Bootstrap templates from `resources/views` and route/controller structure from this phase.

## Default Admin
- Email: `admin@flowieons.com`
- Password: `password123`
