@extends('frontend.layouts.app') @section('title', 'Special Offers') @section('content')

Special Offers

Grab these deals before they're gone

@forelse($offers as $o)
@if($o->banner_image)@endif

{{ $o->title }}

{{ $o->description }}

{{ $o->discount_percentage ? $o->discount_percentage.'% OFF' : $siteSettings['currency'].$o->fixed_discount.' OFF' }} Until {{ $o->end_date->format('M d') }}
@empty

No active offers right now — check back soon!

@endforelse
@endsection