arabicsooq / filament-env-editor
Access .env file though Filament admin panel
Fund package maintenance!
ArabicSooq
Requires
- php: ^8.2|^8.3
- filament/filament: ^3.0
- geo-sot/laravel-env-editor: ^3.0
- illuminate/contracts: ^12.0
- spatie/laravel-package-tools: ^1.17.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.15
- larastan/larastan: ^2.0
- orchestra/testbench: ^9.0
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is not auto-updated.
Last update: 2025-05-04 10:49:54 UTC
README
A Simple .env file Viewer plugin for your Filament Panels.
Provides features like, manage current .env variables, and a handy backup functionality page
Important Notice: Original Author and Laravel 12 Support
This repository is a modified version of GeoSot/filament-env-editor with adjustments to support Laravel 12. The original author of the package is GeoSot.
These modifications have been made to ensure compatibility with the latest Laravel releases, enabling users to leverage this valuable tool in their Laravel 12 environments.
Installation
You can install the package via composer:
composer require arabicsooq/filament-env-editor
Usage
Add the ArabicSooq\FilamentEnvEditor\FilamentEnvEditorPlugin
to your panel config.
use ArabicSooq\FilamentEnvEditor\FilamentEnvEditorPlugin; class AdminPanelProvider extends PanelProvider { public function panel(Panel $panel): Panel { return $panel // ... ->plugin( FilamentEnvEditorPlugin::make() ); } }
Configuration
Customizing the navigation item
FilamentEnvEditorPlugin::make() ->navigationGroup('System Tools') ->navigationLabel('My Env') ->navigationIcon('heroicon-o-cog-8-tooth') ->navigationSort(1) ->slug('env-editor')
Hiding keys
Some keys you may consider to be particularly sensitive and don't wish to expose them, even through this package. You can hide them through this interface:
FilamentEnvEditorPlugin::make() ->hideKeys('APP_KEY', 'BCRYPT_ROUNDS')
Authorization
If you would like to prevent certain users from accessing the logs page, you should add a authorize
callback in the FilamentLEnvEditorPlugin chain.
FilamentEnvEditorPlugin::make() ->authorize( fn () => auth()->user()->isAdmin() )
Customizing the log page
To customize the "env-editor" page, you can extend the ArabicSooq\FilamentEnvEditor\Pages\ViewEnv
page and override its methods.
use ArabicSooq\FilamentEnvEditor\Pages\ViewEnv as BaseViewEnvEditor; class ViewEnv extends BaseViewEnvEditor { // Your implementation }
use App\Filament\Pages\ViewEnv; FilamentEnvEditorPlugin::make() ->viewPage(CustomEnvPage::class)
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.