https://i.sstatic.net/oo3MP.png
Is there a better way to organize and display my content?
I have an array of elements that I want to display like the example above. I attempted using lists, but it didn't work out as expected.
Here's what I've tried:
<div class="row">
<div class="col-lg-12">
<ul class="list-unstyled">
@foreach($categories as $category)
<li><a href="#">{{$category->name}}</a></li>
@endforeach
</ul>
</div>