TanchoToplineCargo/resources/views/client/sunsari/template-parts/clients.blade.php

27 lines
979 B
PHP
Raw Normal View History

2024-05-05 04:47:49 +00:00
<div class="bg-wrapper mt-5">
<div class="container">
<div class="center-title">
<h2>Collaborators & Clients</h2>
<p>Our Partners</p>
</div>
<div class="row justify-content-center"> <!-- Center the grid -->
@php $counter = 0 @endphp
@foreach(MPCMS::getcompanies() as $client)
@if ($counter < 6)
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
<figure class="client-logo">
<a href="{{$client->logo}}">
<img src="{{$client->logo }}" alt="">
</a>
</figure>
</div>
@endif
@php $counter++ @endphp
@endforeach
</div>
</div>
<div class="mt-3 text-center">
<p><a class="tp-btn-primary" href="{{site_url('industries')}}" role="button">View More</a></p>
</div>
</div>