all(); $acknowledgement_detail = AcknowledgementDetailAction::run($action, $acknowledgement_detail, $request); $data = new AcknowledgementDetailResource($acknowledgement_detail); return $this->response->message(trans("messages.success.{$action}", ['Module' => trans('account::acknowledgement_detail.name')])) ->code(204) ->data(compact('data')) ->status('success') ->url(guard_url('account/acknowledgement_detail/' . $acknowledgement_detail->getRouteKey())) ->redirect(); } catch (Exception $e) { return $this->response->message($e->getMessage()) ->code(400) ->status('error') ->url(guard_url('account/acknowledgement_detail/' . $acknowledgement_detail->getRouteKey())) ->redirect(); } } public function notify(){ } }