11 lines
283 B
PHP
Executable File
11 lines
283 B
PHP
Executable File
<ul class="list no_border spacing clearfix">
|
|
@foreach($data as $item)
|
|
@if($loop->index >= 5) @break @endif
|
|
<li class="bullet_style_2">
|
|
<h5>
|
|
<a href="{{url($item->url)}}" title="{{$item->title}}" style="color: inherit;">{{$item->title}}</a>
|
|
</h5>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|