seller = $seller; $this->country_iso = $country_iso; $this->category = $category; } /** * Execute the job. */ public function handle(): void { $shopee_task = ShopeeSellerTopProductScraperTask::handle($this->seller, $this->country_iso, $this->category); //dd($shopee_task->product_task); if (! is_null($shopee_task)) { SaveShopeeSellerImagesTask::handle($shopee_task); GenerateShopeeAIArticleTask::handle($shopee_task->shopee_seller_scrape); } } }