12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace App\Models;
- use Illuminate\Contracts\Auth\MustVerifyEmail;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- use Illuminate\Notifications\Notifiable;
- class User extends Authenticatable
- {
- use HasFactory, Notifiable;
-
- protected $fillable = [
- 'name',
- 'email',
- 'password',
- ];
-
- protected $hidden = [
- 'password',
- 'remember_token',
- ];
-
- protected $casts = [
- 'email_verified_at' => 'datetime',
- ];
- }
|