阅读(1209)
赞(2)
Laravel 8 判断视图文件是否存在
2021-06-24 17:36:54 更新
如果需要判断视图文件是否存在,可以使用 View facade。如果存在,exists 方法会返回 true :
use Illuminate\Support\Facades\View;
if (View::exists('emails.customer')) {
//
}如果需要判断视图文件是否存在,可以使用 View facade。如果存在,exists 方法会返回 true :
use Illuminate\Support\Facades\View;
if (View::exists('emails.customer')) {
//
}Copyright©2023 字节宝字节宝| |
违法和不良信息举报电话:|举报邮箱:3111859717@qq.com
