laravel-dashboard maintained by spiderwork
About Laravel Dashboard
Laravel Dashboard is a custom developed package by SpiderWorks, that extends capability of Laravel framework to further level.
How to use
Step 1
First install Laravel framework version 8 by following command
composer create-project laravel/laravel app-name 8
Step 2
Install Laravel Dashboard package by following command
composer require spiderwork/laravel-dashboard
Step 3
Enable login authentication
php artisan breeze:install
Step 4
Run these command
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
php artisan vendor:publish --provider="Spiderworks\Webadmin\WebadminServiceProvider"
Step 5
Create a database and connect it to .env file. the run the following command
php artisan migrate
Step 6
Create an 'IsAdmin' middleware with Spatie roles click here to see spatie package
Step 7
In Providers/RouteServiceProvider.php Change line number 20
public const HOME = 'dashboard';
to
public const HOME = 'admin/dashboard';