route('translate-index', [$this->get('lang')])->with([ 'success' => __('Your translation has been saved.') ]); } /** * @return RedirectResponse */ public function failed(): RedirectResponse { return redirect()->route('translate-index', [$this->get('lang')])->with([ 'error' => __('Due to technical difficulties your translations could not be saved.') ]); } }