Laravel Admin Panel
This package is intended to help with the speed of development of new sites that require some type of administration panel, (*1)
Feel free to use this package if it is of any use to you, (*2)
Installation
The admin panel works on top of Laravel's Authentication so in order to use the package you will need to create the Laravel Authentication with the next command:, (*3)
php artisan make:auth
To install the package first you'll need to require it trough composer, (*4)
composer require verumconsilium/admin
Once you've installed the package the next step is to register the Service Provider.
Add the next element to the providers array in your config/app.php file, (*5)
'providers' => [
VerumConsilium\Admin\AdminServiceProvider::class,
]