← Back to Plugins
  • Versions

Versions

Plugin information

by Adam Weston • 13 stars

Admin panel Widget

A mostly useless package to display framework versions at the bottom of the Admin navigation panel and an optional widget to do the same.

Support

#versions on Discord

Views

1242

License

MIT

Documentation

Installation

Install the package via composer

composer require awcodes/filament-versions

Usage

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 />