I have following code in my blade file $titleObject is a collection. Is there any way to limit the number(eg:- 3 items per row) of items per row. Please let me know if there is a better way to accomplish this than to write complex for loops.
<div class="container" align="left">
<!-- Navigation -->
<header> <a href="">
<table cellpadding="10" width="200" border="0">
<tbody>
@if($titleObject)
<tr>
@foreach($titleObject as $title)
<td>{{$title->title}}</td>
<td> </td>
@endforeach
</tr>
@endif
</tbody>
</table>
<h4 class="logo"> </h4>
</a></header>
</div>