dev-main 2025-08-13 00:50 UTC

This package is auto-updated.

Last update: 2025-08-13 00:52:48 UTC


README

Install

Add to User Model

use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Componist\Auth\Traits\AddComponistAuthentication;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;


class User extends Authenticatable implements MustVerifyEmail
{
    use HasFactory;
    use Notifiable;
    use AddComponistAuthentication;

    //
}