0

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.

JΛYDΞV
  • 8,532
  • 3
  • 51
  • 77

0 Answers0