*/ public function toArray(Request $request): array { return [ 'id' => $this->resource->id, 'month' => $this->resource->month, 'store' => StoreResource::make($this->whenLoaded('store')), 'description' => $this->resource->description, 'photos' => $this->resource->photos, 'status' => $this->resource->task_status, 'created_at' => $this->resource->created_at->timestamp, ]; } }