美文网首页
4. 视图balde的初级用法

4. 视图balde的初级用法

作者: ZhouJiping | 来源:发表于2016-06-07 22:55 被阅读18次

    目录

    视图层

    app.blade.php

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Zhoujiping.com</title>
        <!-- 新 Bootstrap 核心 CSS 文件 -->
        <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
    </head>
    <body>
        @yield('header')
        @yield('content')
        @yield('footer')
    </body>
    </html>
    

    about/index.balde.php

    @extends('app')
    
    @section('header')
    Here is header
    @endsection
    
    @section('content')
    Here is content
    @endsection
    

    条件判断

    @extends('app')
    
    @section('content')
        @if($firstName == 'kuker')
            <h1>first name is {{ $firstName }}</h1>
        @elseif($lasrName == 'chou' )
            <h1>last name is $lastname</h1>
        @else
            什么龟??
        @endif
    @endsection
    

    循环

    @extends('app')
    
    @section('content')
        @if(count($users > 0))
        <ul>
             @foreach($users as $user)
                <li>{{ $user }}</li>
            @endforeach
        </ul>
        @endif
    @endsection
    

    相关文章

      网友评论

          本文标题:4. 视图balde的初级用法

          本文链接:https://www.haomeiwen.com/subject/dmxjdttx.html