akarumey95 / dashboard
This package for laravel admin panel
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/akarumey95/dashboard
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