first change

This commit is contained in:
2025-07-27 17:40:56 +05:45
commit f8b9a6725b
3152 changed files with 229528 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
@if ($successGalleries->galleries->isNotEmpty())
<section class="bg-gradient-very-light-gray ps-6 pe-6 lg-ps-2 lg-pe-2">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-md-12 text-center mb-2">
<h3 class="alt-font fw-700 text-dark-gray ls-minus-1px">Voices of Success: Real Stories, Real Impact</h3>
</div>
</div>
<div class="row justify-content-center">
@foreach ($successGalleries->galleries as $gallery)
<div class="col-lg-4 col-md-6 fit-videos text-center mb-4">
<iframe width="100%" height="55px" src="{{ $gallery->link }}?autoplay=1&mute=1&loop=1" allow="autoplay; encrypted-media;" allowfullscreen></iframe>
</div>
@endforeach
</div>
</div>
</section>
@endif