| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace App\Models;
- use Hypervel\Foundation\Auth\User as Authenticatable;
- class User extends Authenticatable
- {
- /**
- * The attributes that are mass assignable.
- */
- protected array $fillable = [
- 'name',
- 'email',
- 'email_verified_at',
- 'password',
- ];
- }
|