首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Laravel Blade '@‘函数

Laravel Blade '@‘函数
EN

Stack Overflow用户
提问于 2019-12-21 12:23:20
回答 1查看 62关注 0票数 0

在下面的“@收益率”函数中,它显示为不像刀片函数关键字的普通单词。

代码语言:javascript
复制
@yield('content')
</div>

@yield('footer')

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-12-23 12:43:51

代码语言:javascript
复制
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Admin | @yield('title')</title>
        <!--Has all the sylesheets attached already!-->
        @include('Elements/_head')  
        <!--Custom CSS or CSS Files for particular page-->
        @yield('styles')    
    </head>
    <body class="hold-transition skin-blue sidebar-mini" onload="startTime()">
        <div class="wrapper">
            <!--Application Header-->
            @include('Elements/_header')
            <!--Application Sidebar-->
            @include('Elements/_side')
            <!--Page Content Main-->
            <!-- Content Wrapper. Contains page content -->
            <div class="content-wrapper">
                <!-- Content Header (Page header) -->
                <section class="content-header">
                  <h1>
                    @yield('title')
                    <small></small>
                  </h1>
                </section>

                <!-- Main content -->
                <section class="content">
                    <img id="loader" src="{{url::asset('images/loading.gif')}}">
                @yield('content')
                </section>
            </div>
            <!--Footer of Application--> 
            @include('Elements/_footer')         
        </div>
        <!--Has all the scripts already attached-->  
        @include('Elements/_base') 
        <!--Custom scripts for particular pages-->
        @yield('scripts') 
  </body>
</html>
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/59436146

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档