This commit is contained in:
2025-09-25 03:03:31 +05:00
commit ae480cf2f6
2768 changed files with 1485826 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
@php
$homepage_two_grid_banners = App\Models\CMS\Media\Banner::with('media')->where('place', 'homepage_2_grid')->get();
@endphp
<div id="theme-section-two-grid-banners" class="theme-section">
<div data-section-id="two-grid-banners" data-section-type="home-builder" class="container"
>
<div class="overflow-x-hidden">
<div class="row mt-0 mb-45 justify-content-start align-items-start">
@foreach($homepage_two_grid_banners as $banner)
@include('web.themes.shella.components.banners.2-grid-banner-item', ['banner' => $banner])
@endforeach
</div>
</div>
</div>
<script>
Loader.require({
type: "script",
name: "home_builder"
});
</script>
</div>