item = $item; } /** * Execute the job. * * @return boolean|Exception */ public function handle() { $this->authorize(); \DB::transaction(function () { $this->deleteRelationships($this->item, ['taxes']); $this->item->delete(); }); return true; } /** * Determine if this action is applicable. * * @return void */ public function authorize() { if ($relationships = $this->getRelationships()) { $message = trans('messages.warning.deleted', ['name' => $this->item->name, 'text' => implode(', ', $relationships)]); throw new \Exception($message); } } public function getRelationships() { $rels = [ 'invoice_items' => 'invoices', 'bill_items' => 'bills', ]; return $this->countRelationships($this->item, $rels); } }