Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
作业标题:0906作业
作业内容:1模板内容记住 2.后台模板分块
@extends('app')
@section('title','流程控制')
@section('content')
@isset($num)
@if($num==2)
我是1
@elseif($num==3)
我是3
@else
我不等于2
@endif
@endisset
<hr>
@unless(true)
我输出了没有
@endunless
{{--循环--}}
{{--for--}}
@for($i=0;$i<=10;$i++)
{{$i}}<br/>
@endfor
@foreach($data as $k=>$val)
键为{{$k}},值为:{{$val}}<br/>
@endforeach
@forelse($data as $user)
<li>{{$user}}</li>
@empty
<p>No users</p>
@endforelse
@foreach($data as $k=>$v)
@if($loop->first)
我是第一次循环,我的值是:{{$v}}
@elseif($loop->last)
我是最后一次循环,我的值是:{{$v}}
@endif
<br>
{{$loop->index}}
<br>
@endforeach
@include('heihei');
@endsection