studiocreativateam / auth
0.3.18
2023-02-01 14:19 UTC
Requires
- php: ^8.0
- kodeine/laravel-meta: ^2.1
- lab404/laravel-impersonate: ^1.7
- laravel/framework: ^9.0
- laravel/sanctum: ^v3.0.0
- laravel/socialite: ^5.5
- laravel/ui: ^3.4
- sofa/revisionable: ^5.7
- spatie/laravel-permission: ^5.5
- studiocreativateam/base: ~0.2
- studiocreativateam/dashboard: ~0.1
- studiocreativateam/global-search: ~0.1
- studiocreativateam/google-recaptcha: ~0.1
- studiocreativateam/listing: ~0.1
- studiocreativateam/mails: ~0.1
- studiocreativateam/settings: ~0.1
- yadahan/laravel-authentication-log: ^1.5
Requires (Dev)
- orchestra/testbench: ^7.0
- dev-master
- 0.3.18
- 0.3.17
- 0.3.16
- 0.3.15
- 0.3.14
- 0.3.13
- 0.3.12
- 0.3.11
- 0.3.10
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.104
- 0.2.103
- 0.2.102
- 0.2.101
- 0.2.100
- 0.2.99
- 0.2.98
- 0.2.97
- 0.2.96
- 0.2.95
- 0.2.94
- 0.2.93
- 0.2.92
- 0.2.91
- 0.2.90
- 0.2.89
- 0.2.88
- 0.2.87
- 0.2.86
- 0.2.85
- 0.2.84
- 0.2.83
- 0.2.82
- 0.2.81
- 0.2.80
- 0.2.79
- 0.2.78
- 0.2.77
- 0.2.76
- 0.2.75
- 0.2.74
- 0.2.73
- 0.2.72
- 0.2.71
- 0.2.70
- 0.2.69
- 0.2.68
- 0.2.67
- 0.2.66
- 0.2.65
- 0.2.64
- 0.2.63
- 0.2.62
- 0.2.61
- 0.2.60
- 0.2.59
- 0.2.58
- 0.2.57
- 0.2.56
- 0.2.55
- 0.2.54
- 0.2.53
- 0.2.50
- 0.2.49
- 0.2.48
- 0.2.47
- 0.2.46
- 0.2.45
- 0.2.44
- 0.2.43
- 0.2.42
- 0.2.41
- 0.2.39
- 0.2.38
- 0.2.37
- 0.2.36
- 0.2.35
- 0.2.34
- 0.2.33
- 0.2.32
- 0.2.31
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.99
- 0.1.98
- 0.1.97
- 0.1.96
- 0.1.95
- 0.1.94
- 0.1.93
- 0.1.92
- 0.1.91
- 0.1.89
- 0.1.88
- 0.1.87
- 0.1.86
- 0.1.85
- 0.1.84
- 0.1.83
- 0.1.82
- 0.1.81
- 0.1.79
- 0.1.78
- 0.1.77
- 0.1.76
- 0.1.75
- 0.1.74
- 0.1.73
- 0.1.72
- 0.1.71
- 0.1.70
- 0.1.69
- 0.1.68
- 0.1.67
- 0.1.66
- 0.1.65
- 0.1.64
- 0.1.63
- 0.1.62
- 0.1.61
- 0.1.9
- 0.1.8
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0.x-dev
- 0.1.0
This package is auto-updated.
Last update: 2023-02-01 18:49:17 UTC
README
Package adds users, basic auth, users CRUD.
Installation
1. Require package in your composer.json
:
composer require studiocreativateam/auth
2. Add the service provider to your app/config/app.php
:
'providers' => [
...
\Sofa\Revisionable\Laravel\ServiceProvider::class,
],
3. Run below command to overwrite config/auth.php settings. To use User
model from auth package
php artisan vendor:publish --provider="SCTeam\Auth\SCTeamServiceProvider" --tag="config-auth" --force
4. Run revisions migration:
php artisan migrate
5. Compile views:
npm run dev
6. (Optional) run seeds:
php artisan db:seed --class "SCTeam\Auth\Database\Seeders\PermissionsAndRolesSeeder"
php artisan db:seed --class "SCTeam\Auth\Database\Seeders\UsersSeeder"
Features
The lib allows
- create
- read
- update
- delete
Publishing
You can publish file by using command
php artisan vendor:publish --provider="SCTeam\Auth\SCTeamServiceProvider" --tag="{{tag1|tag2}}"
Available tags:
migrations
breadcrumbs
views
config