Follow the steps below to set up this project:
git clone https://github.com/shivanikoko/laravel-admin.git
check-in to the cloned directory
cd laravel-admin
To get all the dependencied aka vendor folder run composer install
composer install
composer update
Alert!! Run composer update only on you local system never on server
when you clone you only get .env.example
file as .env
file is always in gitignore, so create one for you with the reference of example file
cp .env.example .env
nano .env
change the DB setting
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=your_username
DB_PASSWORD=your_password
php artisan migrate
php artisan db:seed
All Other Roles and Permissions will be create by Super Admin so create one first
php artisan create:super-admin
and follow the instructions to set up super admin credentials
php artisan serve