We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently we are using a few ways to output user errors / messages to users.
this includes:
Session::flash('alert-*', 'Message');
->with('errors', $validator)
->with('error', 'Message');
we should implement one flexible way of doing the Message handling and clean up everything else
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently we are using a few ways to output user errors / messages to users.
this includes:
Session::flash('alert-*', 'Message');
->with('errors', $validator)
(using an Validator ErrorBag)->with('errors', $validator)
(using an ViewErrorBag)->with('error', 'Message');
we should implement one flexible way of doing the Message handling and clean up everything else
The text was updated successfully, but these errors were encountered: