Normally in Laravel 4.2 when we create flash message by
Session::flash('message','This is flash message');
and display it by
Session::get('message');
It will disappear when we refresh the page.
The question is how could we set the display time of this flash message?
(For example: After 3 seconds, this message will disappear!).