A demo application to illustrate how Filament Admin works.
Open in Gitpod to edit it and preview your changes with no setup required.
Clone the repo locally:
git clone 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:seedNote
If you get an "Invalid datetime format (1292)" error, this is probably related to the timezone setting of your database.
Please see https://dba.stackexchange.com/questions/234270/incorrect-datetime-value-mysql
Create a symlink to the storage:
php artisan storage:linkRun 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: [email protected]
- Password: password
- ProductResource
- OrderResource
- PostResource
- CategoryResource\RelationManagers\ProductsRelationManager
- OrderResource\RelationManagers\PaymentsRelationManager
- CustomerResource\RelationManagers\PaymentsRelationManager
- OrderResource -> Address
- ProductResource\RelationManagers\CommentsRelationManager
- PostResource\RelationManagers\CommentsRelationManager
- BrandResource\RelationManagers\AddressRelationManager
- CustomerResource\RelationManagers\AddressRelationManager