@php use Illuminate\Support\Str; use App\Models\Frontend\ContentManagement; use App\Models\Frontend\PageCustomField; $lang = session('language') ? session('language') : 'en'; $franchisesTitle = ContentManagement::getLike('franchises_title','franchises'); $franchisesDesc = ContentManagement::getLike('franchises_description','franchises'); $franchisesImage = ContentManagement::getFrontend('franchises_image','franchises'); if(isset($categoryId) && $categoryId) { $breadcrumbImage = '../frontend/images/Frame.png'; } else { $breadcrumbImage = 'frontend/images/Frame.png'; } @endphp @extends('frontLayout.frontlayout') @section('content')

{{isset($franchisesTitle) && $franchisesTitle ? __dl($franchisesTitle,'franchises_title') : ''}}

{{isset($franchisesDesc) && !empty($franchisesDesc) ? __dl($franchisesDesc,'franchises_description'):''}}

{!! General::renderImages($franchisesImage, 'medium') !!}
{{-- grid_section --}}
@if(!empty($data) && count($data) > 0) @include('frontend.franchises.listingLoop') @else
@endif
@include('frontend.partials.simplePagination',['pagination' => $data,'url' => route('franchises.index')])
@include('frontend.franchises.contactForm') @endsection