Advertisement
soden

Untitled

Nov 25th, 2022
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. // use Illuminate\Contracts\Auth\MustVerifyEmail;
  6. use Illuminate\Database\Eloquent\Factories\HasFactory;
  7. use Illuminate\Foundation\Auth\User as Authenticatable;
  8. use Illuminate\Notifications\Notifiable;
  9. use Laravel\Sanctum\HasApiTokens;
  10.  
  11. class User extends Authenticatable
  12. {
  13.     use HasApiTokens, HasFactory, Notifiable;
  14.  
  15.     /**
  16.      * The attributes that are mass assignable.
  17.      *
  18.      * @var array<int, string>
  19.      */
  20.     protected $fillable = [
  21.         'name',
  22.         'email',
  23.         'password',
  24.     ];
  25.  
  26.     /**
  27.      * The attributes that should be hidden for serialization.
  28.      *
  29.      * @var array<int, string>
  30.      */
  31.     protected $hidden = [
  32.         'password',
  33.         'remember_token',
  34.     ];
  35.  
  36.     /**
  37.      * The attributes that should be cast.
  38.      *
  39.      * @var array<string, string>
  40.      */
  41.     protected $casts = [
  42.         'email_verified_at' => 'datetime',
  43.     ];
  44.  
  45.     // inverse one to Many ke tabel role
  46.     public function role()
  47.     {
  48.         return $this->belongsTo(Role::class, 'role_id');
  49.     }
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement