From 7df5c8611bd27837ad8953788902dfba62926807 Mon Sep 17 00:00:00 2001 From: Patric Date: Sat, 15 Jun 2024 20:59:43 +0200 Subject: [PATCH] installed filament --- example-app/composer.json | 4 +++- example-app/config/app.php | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/example-app/composer.json b/example-app/composer.json index 8a3d72d..ad463da 100644 --- a/example-app/composer.json +++ b/example-app/composer.json @@ -6,6 +6,7 @@ "license": "MIT", "require": { "php": "^8.1", + "filament/filament": "^3.2", "guzzlehttp/guzzle": "^7.2", "laravel/framework": "^10.10", "laravel/sanctum": "^3.3", @@ -35,7 +36,8 @@ "scripts": { "post-autoload-dump": [ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", - "@php artisan package:discover --ansi" + "@php artisan package:discover --ansi", + "@php artisan filament:upgrade" ], "post-update-cmd": [ "@php artisan vendor:publish --tag=laravel-assets --ansi --force" diff --git a/example-app/config/app.php b/example-app/config/app.php index 9207160..0729885 100644 --- a/example-app/config/app.php +++ b/example-app/config/app.php @@ -167,6 +167,7 @@ return [ App\Providers\AuthServiceProvider::class, // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, + App\Providers\Filament\AdminPanelProvider::class, App\Providers\RouteServiceProvider::class, ])->toArray(),