Skip to content

allphptricks/laravel-11-roles-and-permissions

Repository files navigation

Laravel 11 Spatie User Roles and Permissions

Learn how to implement Laravel 11 Spatie user roles and permissions application

The complete tutorial step by step guide is available on my blog. AllPHPTricks Laravel 11 roles and permissions

Blog

https://www.allphptricks.com/

Installation

Make sure that you have setup the environment properly. You will need minimum PHP 8.2, MySQL/MariaDB, composer and Node.js.

  1. Download the project (or clone using GIT)
  2. Copy .env.example into .env and configure your database credentials
  3. Go to the project's root directory using terminal window/command prompt
  4. Run composer install
  5. Set the application key by running php artisan key:generate --ansi
  6. Run migrations php artisan migrate:fresh --seed
  7. Run npm install
  8. Run npm run build to build assets
  9. Start local server by executing php artisan serve
  10. Visit here http://127.0.0.1:8000/login to test the application