smylmrz / dashboard
A simple dashboard
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Language:CSS
pkg:composer/smylmrz/dashboard
This package is auto-updated.
Last update: 2025-12-10 08:04:46 UTC
README
A dashboard with auth to get you started
Installation
You can install the package via composer:
composer require smyl/dashboard
You must publish and run the migrations to create the necessary tables:
php artisan vendor:publish --provider="Smyl\Dashboard\DashboardServiceProvider"
php artisan migrate
Content of published config file. These values are used for creating roles.
return [ 'roles' => [ 'admin', // Do not remove or reorder the admin or it will cause errors. 'editor', 'contributor', 'viewer' ] ];
After publishing the config file you can customize the roles. To populate the roles table run php artisan roles:create command.
To create an admin user for loggin in run php artisan admin:create command. You can specify --name, --email and --password for the user or defults values will be used.
Default admin:
Email: admin@smyl.com, Password: password