User.php 337 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Models;
  4. use Hypervel\Foundation\Auth\User as Authenticatable;
  5. class User extends Authenticatable
  6. {
  7. /**
  8. * The attributes that are mass assignable.
  9. */
  10. protected array $fillable = [
  11. 'name',
  12. 'email',
  13. 'email_verified_at',
  14. 'password',
  15. ];
  16. }