A demo application to illustrate how Filament Admin works.
Clone the repo locally:
https://github.com/laravel-filament/demo.git filament-demo
cd filament-demoInstall PHP dependencies:
composer installSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateCreate an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqliteRun database migrations:
php artisan migrateRun database seeder:
php artisan db:seedRun the dev server (the output will give the address):
php artisan serveYou're ready to go! Visit the url in your browser, and login with:
- Username: admin@filamentphp.com
- Password: password
