*/ protected $fillable = [ 'name', 'email', 'password', 'role_id', 'class' ]; /** * 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 getJWTIdentifier() { return $this->getKey(); } public function getJWTCustomClaims() { return []; } public function role() { return $this->belongsTo(Role::class); } public function roles(){ return $this->hasMany(Role::class); } public function Explains(){ return $this->hasMany(Explains::class); } public function essay(){ return $this->hasMany(EssayQuestion::class); } public function userAnswer(){ return $this->hasMany(UserAnswer::class); } public function wondering(){ return $this->hasMany(WonderingScore::class); } public function explainingscore(){ return $this->hasMany(ExplainingScore::class); } }