akarumey95 / dashboard
This package for laravel admin panel
v1.0.6
2020-08-05 14:56 UTC
README
1)For install composer require akarumey95/dashboard
2)Open your config/app.php
and add the following to the providers
array:
Akarumey95\Dashboard\Providers\DashboardServiceProvider::class,
and to the aliases
array:
'Dashboard' => Akarumey95\Dashboard\Facades\Dashboard::class,
3)Run in console
php artisan dashboard:install
Dashboard Use
Generate Controller
php artisan dashboard:controller {Path to Model after App\\}
Generate Views
php artisan dashboard:view {ModelName}
Or Generate Controller with views
php artisan dashboard:controller {Path to Model after App\\} --view