make(MerchantRepository::class)->get($merId); if ($merchant) { $where = [ 'mer_status' => ($merchant['is_del'] || !$merchant['mer_state'] || !$merchant['status']) ? 0 : 1 ]; app()->make(ProductRepository::class)->changeMerchantProduct($merId, $where); } $job->delete(); } public function failed($data) { // TODO: Implement failed() method. } }