Answer the question
In order to leave comments, you need to log in
How to make alert notifications via return?
Good day! tell me how to call alert notification on the page through return and bootstrap? without picking js I was looking for only options through the validator
Answer the question
In order to leave comments, you need to log in
return redirect()->route('route')->with('alert', 'Text Alert');
and in blade:
@if(session()->exists('alert'))
<div class="alert alert-success">
{{-- само сообщение --}}
{{ session('alert') }}
{{-- кнопка для закрытия алерта --}}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
@endif
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question