Role-based-laravel-admin-dashboard-version-8.0
This template can be used as starter pack of any laravel project. Easy to extend code for any feature.
To see the progress report of this project, Project report.
Make a test domain,
Go to this location -> C:WindowsSystem32driversetc
Edit 'host' file and paste -> 127.0.0.1 giveaname.test
Again, go to this location -> C:xamppapacheconfextra
Edit 'httpd-vhosts.conf'file and paste ->
<VirtualHost *:80>
##ServerAdmin [email protected]
DocumentRoot "C:/xampp/htdocs/projectname/public"
ServerName giveaname.test
##ErrorLog "logs/dummy-host2.example.com-error.log"
##CustomLog "logs/dummy-host2.example.com-access.log" common
Create database and Edit '.env'
Go to 'bootstrap' folder -> then 'cache' folder and delete everything inside folder. (If 'cache' folder is not available then make this folder)
If 'storage' folder doesn't exist then make 'storage' folder and inside 'storage' folder make these folder 'app', 'framework', 'log'. Inside 'app' folder make 'public' folder. Inside 'framwork' folder make these folder 'cache', 'sessions', 'testing', 'views'. Inside 'cache' folder make 'data' folder.
If 'storage' folder exist then delete all files inside these folder 'cache', 'sessions', 'testing', 'views'. And make sure inside 'cache' folder there exist 'data' folder.
Then run all of commands,
composer install
php artisan key:generate
php artisan storage:link
php artisan migrate
php artisan db:seed
php artisan cache:clear
php artisan config:clear
php artisan view:clear
php artisan config:cache
php artisan view:cache
php artisan route:cache
composer dump-autoload
php artisan vendor:publish
For reset password feature config '.env' file with Mailtrap.
Now open your browser and go to your domain and ENJOY.