@extends("front.$version.layout") @section('pagename') - {{__('Gallery')}} @endsection @section('meta-keywords', "$be->gallery_meta_keywords") @section('meta-description', "$be->gallery_meta_description") @section('breadcrumb-title', $bs->gallery_title) @section('breadcrumb-subtitle', $bs->gallery_subtitle) @section('breadcrumb-link', __('GALLERY')) @section('content') @if (count($categories) > 0 && $bex->gallery_category_status == 1) {{__('All')}} @foreach ($categories as $category) @php $filterValue = "." . Str::slug($category->name); @endphp {{ convertUtf8($category->name) }} @endforeach @endif @if (count($galleries) == 0) {{ __('No Gallery Image Found!') }} @else @foreach ($galleries as $gallery) @php $galleryCategory = $gallery->galleryImgCategory()->first(); if (!empty($galleryCategory)) { $categoryName = Str::slug($galleryCategory->name); } else { $categoryName = ""; } @endphp @endforeach @endif @endsection @section('scripts') @endsection