• Multi Widget
  • Multi Widget

Multi Widget

Plugin information

by Kenepa

Widget Admin panel Layout

The Multi Widget allows you to combine multiple widgets into a single widget, that can be switched using tabs.

Support

#multi-widget on Discord

Views

3513

License

MIT

Documentation

Multi Widget

filament-shield-art

Latest Version on Packagist Total Downloads

Filament Multi Widget adds a new type of widget to your Filament application. The Multi Widget allows you to combine multiple widgets into a single widget, that can be switched using tabs. This plugin helps clean up your Filament dashboard.

filament-shield-art

Installation

You can install the package via composer:

composer require kenepa/multi-widget

Usage

Create a new Multi Widget by extending the Kenepa\MultiWidget\MultiWidget class.

// app/Filament/Widgets/UserMultiWidget.php
 
class UserMultiWidget extends MultiWidget
{
public array $widgets = [
MySubmittedComments::class,
MySubmittedFeedback::class,
MySubscriptions::class,
];
}

The $widgets property contains the classes of all the widgets that should be added to your Multi Widget. These are normal Filament widgets that you created.
The Multi Widget above will now render as follows:

It is advised to make the canView method return false on the widgets, so that they are not rendered twice.

License

The MIT License (MIT). Please see License File for more information.