Using this package you can create beautiful dashboards.
You can install the package via composer:
composer require shihabphp/livewire-dashboardTo 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 migrateIn 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 testPlease 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. '
