patriciomartinns / laravel-filament-breeze
The skeleton application for the Laravel framework.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:project
Requires
- php: ^8.2
- filament/filament: ^3.3
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- livewire/livewire: ^3.4
- livewire/volt: ^1.7.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/breeze: ^2.3
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^3.7
- pestphp/pest-plugin-laravel: ^3.1
- spatie/laravel-login-link: ^1.6
This package is auto-updated.
Last update: 2025-03-31 18:20:59 UTC
README
This is a starter kit for Laravel projects that includes:
- Filament: A modern and powerful admin panel for Laravel.
- Breeze: A simple and minimal authentication kit for Laravel.
- Spatie Login Link: A package that provides passwordless login via a unique login link displayed on the screen.
What's Included?
- Laravel: PHP framework for web development.
- Filament: Elegant and customizable admin panel.
- Breeze: Authentication scaffolding with support for Blade, Vue, or React.
- Spatie Laravel Login Link: Passwordless login using unique login links.
Requirements
- PHP >= 8.2
- Composer
- Node.js (for asset compilation)
- Database (MySQL, PostgreSQL, SQLite, etc.)
Local Development Setup
Follow these steps to set up the project locally:
-
Clone the repository:
git clone https://github.com/patriciomartinns/laravel-filament-breeze example cd example ## Or laravel new example --using=patriciomartinns/laravel-filament-breeze
-
Install PHP dependencies:
composer install
-
Install Node.js dependencies:
npm install
-
Set up the environment:
- Copy the
.env.example
file to.env
:cp .env.example .env
- Configure the environment variables in the
.env
file, such asDB_DATABASE
,DB_USERNAME
, andDB_PASSWORD
.
- Copy the
-
Generate the application key:
php artisan key:generate
-
Run migrations:
php artisan migrate
-
Seed the database:
- Run the seeder to populate the default user (defined in
DatabaseSeeder
):php artisan db:seed
- Run the seeder to populate the default user (defined in
-
Compile assets:
npm run dev
-
Start the development server:
composer run dev
-
Access the project:
- Open your browser and go to
http://localhost:8000
.
- Open your browser and go to
This will generate a unique login link for the specified email address.
Contributing
If you'd like to contribute to this project, follow these steps:
- Fork the repository.
- Create a feature branch (
git checkout -b feature/new-feature
). - Commit your changes (
git commit -m 'Add new feature'
). - Push to the branch (
git push origin feature/new-feature
). - Open a Pull Request.