'date', 'gallery' => 'array', 'is_active' => 'boolean', 'sort_order' => 'integer', ]; public function getUrlAttribute() { return route('music-productions.show', $this->slug); } public function getCoverImageUrlAttribute() { if ($this->cover_image) { return asset('storage/' . $this->cover_image); } return null; } public function scopeActive($query) { return $query->where('is_active', true); } public function scopeOrdered($query) { return $query->orderBy('sort_order', 'asc')->orderBy('production_date', 'desc'); } }