🌉Widgets
we built a widget Facade service to make it easy to register a widget to the dashboard home page from any provider, so you can use it on your package or on your AppServiceProvider as well.
Registering a widget
you can go to any service provider boot()
method and register your widget like this:
use TomatoPHP\TomatoAdmin\Facade\TomatoWidget;
use TomatoPHP\TomatoAdmin\Services\Contracts\Widget;
public function boot()
{
TomatoWidget::register([
Widget::make()
->title(__('Users'))
->icon('bx bxs-user')
->counter(User::count()),
Widget::make()
->title(__('Roles'))
->icon('bx bx-lock')
->counter(Role::count())
]);
}
}
and you will see the widget on the homepage of the dashboard directly.
Widget Component
you can use Widget as a component like this
<x-tomato-admin-widget
:title="__('Total Users')"
icon="bx bxs-user"
:counter="\App\Models\Users::query()->count()"
/>
Last updated
Was this helpful?