belongsTo(Post::class); } public function getImageUrlAttribute(): string { if (str_starts_with($this->filename, 'users/')) { return route('media.post-image', $this->filename); } return asset('storage/post_images/' . $this->filename); } }