chore: add env variables for filament panel management

This commit is contained in:
idevakk
2025-09-29 00:41:01 +05:30
parent af52ef6ba6
commit 166bcce967
6 changed files with 73 additions and 8 deletions

18
config/filament-php.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
use Filament\Support\Colors\Color;
return [
'route' => env('FILAMENT_ROUTE', 'dash'),
'colors' => [
'primary' => Color::Teal,
'danger' => Color::Red,
'gray' => Color::Zinc,
'info' => Color::Blue,
'success' => Color::Green,
'warning' => Color::Amber,
],
'enable_login' => env('FILAMENT_ENABLE_LOGIN', true),
'enable_registration' => env('FILAMENT_ENABLE_REGISTER', false),
'enable_profile' => env('FILAMENT_ENABLE_PROFILE', false),
];