📌  相关文章
📜  laravel Blade 检查生成的内容是否存在 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:26.591000             🧑  作者: Mango

代码示例1

    @if(View::hasSection('title'))
        @yield('title')
    @else
        Static Website Title Here
    @endif