@php use Illuminate\Support\Str; use App\Models\Frontend\ContentManagement; use App\Models\Frontend\PageCustomField; $lang = session('language') ? session('language') : 'en'; $dataText = ContentManagement::getLike('business_title','business'); $dataDesc = ContentManagement::getLike('business_description','business'); $buyBusinessImage = ContentManagement::getFrontend('business_image','business'); if(isset($industryType) && $industryType) { $breadcrumbImage = '../frontend/images/Frame.png'; } else { $breadcrumbImage = 'frontend/images/Frame.png'; } @endphp @extends('frontLayout.frontlayout') @section('content')

{{isset($dataText) && !empty($dataText) ? __dl($dataText,'business_title'): ""}}

{{isset($dataDesc) && !empty($dataDesc) ? __dl($dataDesc,'business_description'):''}}

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