A Dashboard Creator for your Laravel or Livewire Application
shihabphp/livewire-dashboard is a Laravel package for a dashboard creator for your laravel or livewire application.
It currently has 7 GitHub stars and 29 downloads on Packagist (latest version v1.0).
Install it with composer require shihabphp/livewire-dashboard.
Discover more Laravel packages by shihabphp
or browse all Laravel packages to compare alternatives.
Last updated
Using this package you can create beautiful dashboards.

You can install the package via composer:
composer require shihabphp/livewire-dashboard
To create the dashboard_tiles table, you must create and run the migration.
php artisan vendor:publish --provider="Shihabphp\Dashboard\DashboardServiceProvider" --tag="dashboard-migrations"
php artisan migrate
In your Laravel app, create a new route and view. The url and view name can be whatever you want.
Route::view('dashboard-url', 'dashboard-blade-view');
In your Blade view, use the dashboard Blade view component.
<livewire:livewire-dashboard />
If you want to customize the view used to render the dashboard and the tiles, run this command:
php artisan vendor:publish --provider="Shihabphp\Dashboard\DashboardServiceProvider" --tag="dashboard-views"
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information. '