Adefinir  Finale
User.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  File auto-generated by Laravel
5 */
6 
7 
8 namespace App\Models;
9 
10 use Illuminate\Contracts\Auth\MustVerifyEmail;
11 use Illuminate\Database\Eloquent\Factories\HasFactory;
12 use Illuminate\Foundation\Auth\User as Authenticatable;
13 use Illuminate\Notifications\Notifiable;
14 
15 class User extends Authenticatable
16 {
17  use HasFactory, Notifiable;
18 
24  protected $fillable = [
25  'name',
26  'email',
27  'password',
28  ];
29 
35  protected $hidden = [
36  'password',
37  'remember_token',
38  ];
39 
45  protected $casts = [
46  'email_verified_at' => 'datetime',
47  ];
48 }
App\Models\User\$fillable
$fillable
Definition: User.php:24
App\Models\User\$hidden
$hidden
Definition: User.php:35
App\Models\User\$casts
$casts
Definition: User.php:45
App\Models
Definition: Chart.php:3
App\Models\User
Definition: User.php:16