You can install the package via composer:
composer require spatie/laravel-dashboard
To create the dashboard_tiles
table, you must create and run the migration.
php artisan vendor:publish --provider="Spatie\Dashboard\DashboardServiceProvider" --tag="dashboard-migrations"
php artisan migrate
You must publish the dashboard
config file with this command.
php artisan vendor:publish --provider="Spatie\Dashboard\DashboardServiceProvider" --tag="dashboard-config"
This is the content of the published config file:
return [
'theme' => 'light',
'auto_theme_location' => [
'lat' => 51.260197,
'lng' => 4.402771,
],
];