You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.3 KiB
83 lines
2.3 KiB
<?php
|
|
|
|
namespace RealRashid\SweetAlert;
|
|
|
|
use Closure;
|
|
|
|
class ToSweetAlert
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
* @author Rashid Ali <realrashid05@gmail.com>
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if ($request->session()->has('success')) {
|
|
alert()->success($request->session()->get('success'));
|
|
}
|
|
|
|
if ($request->session()->has('info')) {
|
|
alert()->info($request->session()->get('info'));
|
|
}
|
|
|
|
if ($request->session()->has('warning')) {
|
|
alert()->warning($request->session()->get('warning'));
|
|
}
|
|
|
|
if ($request->session()->has('question')) {
|
|
alert()->question($request->session()->get('question'));
|
|
}
|
|
|
|
if ($request->session()->has('info')) {
|
|
alert()->info($request->session()->get('info'));
|
|
}
|
|
|
|
if ($request->session()->has('errors') && config('sweetalert.middleware.auto_display_error_messages')) {
|
|
$error = $request->session()->get('errors');
|
|
|
|
if (!is_string($error)) {
|
|
$error = $this->getErrors($error->getMessages());
|
|
}
|
|
|
|
alert()->error($error);
|
|
}
|
|
|
|
if ($request->session()->has('toast_success')) {
|
|
alert()->toast($request->session()->get('toast_success'), 'success')->middleware();
|
|
}
|
|
|
|
if ($request->session()->has('toast_info')) {
|
|
toast($request->session()->get('toast_info'), 'info')->middleware();
|
|
}
|
|
|
|
if ($request->session()->has('toast_warning')) {
|
|
toast($request->session()->get('toast_warning'), 'warning')->middleware();
|
|
}
|
|
|
|
if ($request->session()->has('toast_question')) {
|
|
toast($request->session()->get('toast_question'), 'question')->middleware();
|
|
}
|
|
|
|
if ($request->session()->has('toast_error')) {
|
|
toast($request->session()->get('toast_error'), 'error')->middleware();
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
/**
|
|
* Get the validation errors
|
|
*
|
|
* @param object $errors
|
|
* @author Rashid Ali <realrashid05@gmail.com>
|
|
*/
|
|
private function getErrors($errors)
|
|
{
|
|
$errors = collect($errors);
|
|
return $errors->flatten()->implode('<br />');
|
|
}
|
|
}
|
|
|