Inital Commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<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>
|
Reference in New Issue
Block a user