Answers for "how to make laravel spatie permission model in laravel model folder"

PHP
0

laravel folder permission

cd /path/to/root;
sudo chmod -R 777 ./ 
sudo chown -R www-data:www-data ./
sudo usermod -a -G www-data ubuntu
sudo find ./ -type f -exec chmod 644 {} \;
sudo find ./ -type d -exec chmod 755 {} \;
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
Posted by: Guest on May-05-2020
0

spatie/laravel-permission

// Install package
composer require spatie/laravel-permission

// config/app.php
'providers' => [
    // ...
    Spatie\Permission\PermissionServiceProvider::class,
];

// Publish config file
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"

// Clear cache
php artisan optimize:clear
 # or
php artisan config:clear

// Run migration to create tables
php artisan migrate
Posted by: Guest on March-30-2021

Code answers related to "how to make laravel spatie permission model in laravel model folder"

Browse Popular Code Answers by Language