'boolean', 'order' => 'integer', ]; protected $appends = ['sound_url', 'image_url']; public function getSoundUrlAttribute(): ?string { return $this->sound_path ? asset('storage/' . $this->sound_path) : null; } public function getImageUrlAttribute(): ?string { return $this->image_path ? asset('storage/' . $this->image_path) : null; } }