Installation
From version 5 AdminTW is a complete project rather than a package. If you are looking for the package version, please use version 4.
Clone the repository:
git clone git@github.com:dcblogdev/laravel-admintw.git projectName
Remove GIT history:
rm -rf .git
Optionally, Initalise GIT
git init
Copy the .env.example file to .env:
cp .env.example .env
Open .env in your editor.
Set database and emails settings inside .env
Install composer using the command:
composer install
Build the assets:
npm install && npm run build
Link images to storage:
php artisan storage:link
Create the database tables and populate them:
php artisan migrate --seed
Run the tests by running PestPHP
vendor/bin/pest