QQ扫一扫联系
@foreach($records as $i=>$record)
<a href="{{$record['_url']}}">{{$i+1}} - {{$record['title']}}</a>
@endforeach
@foreach($categoryTree as $c)
{{$c['title']}}
@if(!empty($c['_child']))
@foreach($c['_child'] as $cc)
{{$cc['title']}}
@endforeach
@endif
@endforeach