目录
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