place = $place->withoutRelations(); } /** * Execute the job. * * @return void */ public function handle() { if (! $this->batching()) { return; } if (is_null($this->place->latitude)) { $this->fail(new NoCoordinatesException()); } else { app(GetWeatherInformationService::class)->execute([ 'account_id' => $this->place->account_id, 'place_id' => $this->place->id, ]); } } }