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

v1.0.6 2020-08-05 14:56 UTC

This package is auto-updated.

Last update: 2025-12-06 07:20:30 UTC


README

Stable version

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