标签:
一个flash消息的插件
composer require laracasts/flash
//provider ‘Laracasts\Flash\FlashServiceProvider‘ //aliases ‘Flash‘ => ‘Laracasts\Flash\Flash‘
@include(‘flash::message‘)
<script src="//cdn.bootcss.com/jquery/3.0.0-alpha1/jquery.min.js"></script> <script src="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> <script type="text/javascript"> //modal框样式 $(‘#flash-overlay-modal‘).modal(); //或者普通样式 $(‘div.alert‘).not(‘.alert-important‘).delay(3000).slideUp(300); </script>
flash(‘Your article has been created!‘); flash()->success(‘Your article has been created!‘);
//使用modal
flash()->overlay(‘Your article has been created!‘,‘Good Job‘);
标签:
原文地址:http://www.cnblogs.com/fenle/p/4808213.html