connection = 'redis'; $this->onQueue('structures'); } /** * Execute the job. * * @return void */ public function handle() { Structure::truncate(); Service::truncate(); FetchAllianceStructures::dispatch()->delay(Carbon::now()->addSeconds(30)); } /** * Set the tags for the job * * @var array */ public function tags() { return ['PurgeAllianceStructures', 'AllianceStructures', 'Structures']; } }