Laravel 11 | Filament 3: Complete Beginner’s Guide to Installing from Scratch
How to Create a New Laravel Filament Project Using the Laravel Installer: Step-by-Step Guide
Published in
2 min readDec 9, 2024
Laravel Installer
laravel new example-app
Or Using Composer
composer create-project laravel/laravel example-app
Move to Project Folder
cd example-app
Minimum System Requirements for Filament PHP: A Complete Guide
Filament requires the following to run:
- PHP 8.1+
- Laravel v10.0+
- Livewire v3.0+
How to Set Up Filament in a Laravel Project: Step-by-Step Guide
composer require filament/filament:"^3.2" -W
php artisan filament:install --panels
MySQL Database Configuration
.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR_DATABASE_NAME
DB_USERNAME=YOUR_USERNAME (root)
DB_PASSWORD=YOUR_PASSWORD
Run a Laravel Application: A Beginner’s Guide
php artisan serve
How to Access /admin, Sign In, and Start Building Your App in Laravel Filament
http://127.0.0.1:8000/admin/login
Did you know you can clap multiple times? 🥰 If this story added value to your day, please show your support by giving it a 👏 clap, sharing it with others, or even sponsoring my work. Your appreciation means the world to me!