filipfonal / filament-log-manager
Filament Log Manager
Fund package maintenance!
filipfonal
Installs: 66 146
Dependents: 2
Suggesters: 0
Security: 0
Stars: 40
Watchers: 1
Forks: 15
Open Issues: 9
Requires
- php: ^8.1
- filament/filament: ^3.0
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- laravel/pint: ^1.2
- nunomaduro/collision: ^7.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-12-03 22:40:56 UTC
README
A simple and clear interface to preview, download and delete Laravel log files using Filament Admin.
Filament Admin Panel
This package is tailored for Filament Admin Panel.
Make sure you have installed the admin panel before you continue with the installation. You can check the documentation here
Installation
You can install the package via composer:
composer require filipfonal/filament-log-manager
After that, you can register the plugin in the Filament Panel Provider (This is by default AdminPanelProvider.php)
public function panel(Panel $panel): Panel { return $panel ->plugins([ ... \FilipFonal\FilamentLogManager\FilamentLogManager::make(), ]); }
You can publish the config file with:
php artisan vendor:publish --tag="filament-log-manager-config"
You can publish translations files with:
php artisan vendor:publish --tag="filament-log-manager-translations"
Usage
Once installed, the package is ready to use. You will be able to see it in your Filament admin panel.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.