table_name = $table_name; $this->uniacid = $uniacid; } /** * Execute the job. * * @return void */ public function handle() { DB::select("DELETE FROM `{$this->table_name}` WHERE `uniacid` = {$this->uniacid}"); } }