*/ protected $fillable = [ 'name', 'email', 'password', 'employee_id', 'remember_token', ]; /** * 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', ]; protected $appends = ['full_name', 'profile_pic']; public function employee() { return $this->belongsTo(Employee::class, 'employee_id'); } protected function getProfilePicAttribute() { return $this->employee ? asset('storage/' . $this->employee?->profile_picture) : asset('assets/images/task.png'); } }