*/ public function toArray(Request $request, $data = null): array { /** * @var $this Category */ if (!$request['loadCategory']) $request->merge([ 'loadCategory' => false ]); return [ 'id' => $this->id, 'name' => $this->name, 'slug' => $this->slug, 'subtitle' => $this->subtitle, 'description' => $this->description, 'sort' => $this->sort, 'image' => $this->image, 'bg' => $this->bg, 'products' => $this->when($request->input('loadProduct', true), ProductResource::collection($this->products)->additional(['request' => $request['loadCategory']])) ]; } }