*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->title, 'subSections' => SubSectionResource::collection($this->subSections->sortBy('sort')), 'created_at' => $this->created_at, ]; } }