*/ protected $fillable = [ 'name', 'email', 'password', 'last_login_at', 'last_login_ip', 'profile_photo_path', ]; /** * 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', 'last_login_at' => 'datetime', ]; public function getProfilePhotoUrlAttribute() { if ($this->profile_photo_path) { return asset('storage/' . $this->profile_photo_path); } return $this->profile_photo_path; } }