1访问 https://packagist.org/packages/laracasts/flash 查看laracasts/flash的安装详情
2使用 composer 来安装 ,输入:composer require laracasts/flash
3在config/app.php中的providers 添加 Laracasts\Flash\FlashServiceProvider::class,
4在视图模板中添加@include(‘flash::message‘) 引入,并且在后面跟上调用模态框的js代码
<script>
$(document).ready(function(){
$(‘#flash-overlay-modal‘).modal();
});
</script>
5之后在控制台输入 php artisan vendor:publish --provider="Laracasts\Flash\FlashServiceProvider"
6这时候在views文件夹中会出现另外一个文件夹,就是flash生成的视图文件
7,使用就直接调用
flash(‘密码修改成功‘)->overlay(); //使用模态框(弹出框)提示
flash(‘密码修改成功‘)->error(); //使用提示层
8,效果如图: