1.blade模板
foreach中first/last:
ex:
@foreach ($menu as $field=>$item)
@if($loop->first)
first // first
@endif
@if($loop->last)
last // last
@endif
length:{{$loop->count}} // length
{{$loop->index}} // from 0
{{$loop->iteration}} // from 1
@endforeach