This is my code :
return redirect()->action('AdminController@index')->with('succes', ['Mission Ajoutée']);
in blade :
@if(Session::has('succes'))
<div class="alert alert-success">
{{ Session::get('succes')}}
</div>
@endif
I would like to print this message for 10secs. Is is possible to do this with a blade template or with HTML? I want to achieve this without using Javascript.