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