@extends('layouts.app') @section('content')

Events & Offers

Exclusive deals, festive promotions & special occasions

{{-- Filter --}}
All @foreach($occasions as $occ) {{ str_replace('_',' ',$occ) }} @endforeach
@if($offers->isEmpty())

No active offers at the moment. Check back soon!

@else
@foreach($offers as $offer)
@if($offer->image) {{ $offer->title }} @endif @if($offer->badge_text) {{ $offer->badge_text }} @endif @if($offer->discount_value)
{{ $offer->discount_value }}{{ $offer->discount_type==='percent'?'%':'৳' }}
OFF
@endif

{{ $offer->title }}

@if($offer->title_bn)

{{ $offer->title_bn }}

@endif

{{ Str::limit($offer->description, 100) }}

Ends {{ $offer->valid_until->format('M d, Y') }} @if($offer->coupon_code) {{ $offer->coupon_code }} @endif
@if($offer->cta_text) {{ $offer->cta_text }} @endif
@endforeach
{{ $offers->links() }}
@endif
@endsection