[ 'type' => 'events', 'event_id' => $this->id, 'attributes' => [ 'data' => [ 'name' => $this->name, 'description' => $this->description, 'start_date' => $this->start_date, 'end_date' => $this->end_date, 'location' => $this->location, 'category' => [ 'data' => [ 'category_id' => $this->category_id ], ], 'invitations' => UserResource::collection($this->guests), 'invitations-with-email' => [ 'data' => GuestsWithoutEmailResource::collection($this->emailedGuests) ], ] ], ], 'links' => [ 'self' => url('/events/'.$this->id), ] ]; } }