*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'provider_id' => $this->provider_id, 'speciality_id' => $this->speciality_id, 'speciality' => new SpecialityResource($this->whenLoaded('speciality')), 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }