A mostly useless package to display framework versions at the bottom of the Admin navigation panel and an optional widget to do the same.
Install the package via composer
composer require awcodes/filament-versions
The navigation panel is loaded automatically.
To use the widget, just include it either in your filament.php config file under the 'widgets' section:
'widgets' => [ 'namespace' => 'App\\Filament\\Widgets', 'path' => app_path('Filament/Widgets'), 'register' => [ ... \FilamentVersions\FilamentVersionsWidget::class ],],
Or
The widget can also be included as a normal Livewire component on any custom pages, etc:
<filament-versions-widget />