lopatin96/laravel-user-types

Laravel user types

1.0.6 2024-05-24 12:29 UTC

This package is auto-updated.

Last update: 2024-12-24 13:38:00 UTC


README

Trait and Casts

Add HasUserType trait and casts to User model.

use Atin\LaravelSocialAuth\Traits\HasUserType;

class User extends Authenticatable
{
    use HasUserType;
    
    protected $casts = [
        'type' => \Atin\LaravelUserTypes\Enums\UserType::class,
    ];

Run migrations:

php artisan migrate

Publishing

Migrations

php artisan vendor:publish --tag="laravel-user-types-migrations"