@php $exclusiveCoupon = getContent('exclusive_coupons.content', true); $exlusivesCouponsData = App\Models\Coupon::with(['category', 'store','wishlists'])->orderBy('priority', 'asc')->where('status', 1) ->where('is_exclusive', 1) ->latest() ->limit(4) ->get(); @endphp

{{ __($exclusiveCoupon->data_values->heading) }}

@lang('View More ')
@foreach ($exlusivesCouponsData as $item) @endforeach
@push('script') @endpush