authorize(); \DB::transaction(function () { if ($user = $this->model->user) { $this->dispatch(new DeleteUser($user)); } $this->model->delete(); }); return true; } /** * Determine if this action is applicable. */ public function authorize(): void { if ($relationships = $this->getRelationships()) { $message = trans('messages.warning.deleted', ['name' => $this->model->name, 'text' => implode(', ', $relationships)]); throw new \Exception($message); } } public function getRelationships(): array { $rels = [ 'transactions' => 'transactions', ]; if ($this->isCustomer()) { $rels['invoices'] = 'invoices'; } else { $rels['bills'] = 'bills'; } return $this->countRelationships($this->model, $rels); } }