@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) @if(auth()->check() && $item->wishlists->count() > 0) @else @endif @lang('Exclusive') {{ __($item->title) }} {{ __($item->code_name) }} {!! isExpired($item->id) !!} @endforeach @lang('Copy and paste this code at') @lang('View More') @push('script') @endpush
@lang('Exclusive')
{{ __($item->title) }}
{!! isExpired($item->id) !!}
@lang('Copy and paste this code at')