$this->id, 'title' => $this->title, 'description' => $this->description, 'event_date' => $this->event_date ? Carbon::parse($this->event_date)->toIso8601String() : null, 'archived' => $this->archived, 'categories' => $this->categories->map(fn($category) => [ 'id' => $category->id, 'name' => $category->name, 'slug' => $category->slug, ]), ]; } }