@extends('storefront.layout') @section('title', trans_key('storefront.pageTitles.offers').' - '.config('app.name', 'HyperLocal')) @section('content')
Limited-time savings

Offers for you

Apply coupons at checkout or grab discounted products directly.

Shop now →

Coupon codes

{{ method_exists($coupons, 'total') ? $coupons->total() : $coupons->count() }} active coupons

@if($coupons->count())
@foreach($coupons as $coupon)
{{ $coupon->code }}

{{ $coupon->title ?: \App\Support\StorefrontPresenter::couponDiscountLabel($coupon) }}

{{ $coupon->description ?: \App\Support\StorefrontPresenter::couponMinimumLabel($coupon) }}

@endforeach
@if(method_exists($coupons, 'links'))
{{ $coupons->withQueryString()->links('storefront.partials.pagination') }}
@endif @else

No coupons right now

Check back soon for new savings.

@endif
@if(($products ?? collect())->count())

Discounted products

Best price drops around you.

@foreach($products as $product) @include('storefront.partials.product-card', ['product' => $product]) @endforeach
@endif @if(($promotions ?? collect())->count())

Store promotions

Seller-sponsored offers.

@foreach($promotions as $promotion)
{{ $promotion->store?->name ?? $promotion->seller?->business_name ?? trans_key('storefront.fallbacks.promotion') }}

{{ $promotion->title }}

{{ $promotion->description }}

Open
@endforeach
@endif
@endsection