Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 393 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 393 Bytes

Install the template

composer install

cp .env.example .env

php artisan key:generate

Create local DB

mysql -u root -p
create database <db-name>;
exit;

Migrate

php artisan migrate:fresh --seed

Add first Filament Panel

php artisan filament:install --panels

Create a user

php artisan make:filament-user