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 shihab640@hotmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information. '