doublevas / laravel-skeleton
The Laravel Skeleton Application with Authorization.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:project
Requires
- php: >=7.0.0
- fideloper/proxy: ~3.3
- kylekatarnls/laravel-carbon-2: ^1.0.0
- laravel/framework: 5.5.*
- laravel/tinker: ~1.0
- laravelcollective/html: ^5.5
- nesbot/carbon: 2.0.0 as 1.39.0
- spatie/laravel-permission: ^2.7
Requires (Dev)
- filp/whoops: ~2.0
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2025-03-01 00:27:59 UTC
README
This is a simple app to demonstrate implementing the spatie/laravel-permission
package to a fresh Laravel 5.5 app.
To create tables and seed demo database run this in shell:
$ cp .env.example .env
... update credentials in .env ...
$ composer install
$ php artisan key:generate
$ php artisan migrate --seed --step
It will add two users.
- admin : john@example.com / secret
- writer : mary@example.com / secret
In the case of admin user, you can find admin link in user drop-down menu.