*/ protected $primaryKey = 'user_id'; protected $fillable = [ 'username', 'email', 'password', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function roles() { return $this->belongsToMany(Role::class, 'user_roles', 'user_id', 'role_id'); } public function hasRole($role) { return $this->roles()->where('role_name', $role)->exists(); } public function siswa() { return $this->belongsTo(Siswa::class); } }