@if( count($offers) > 0)
@foreach ($offers as $offer)
@if ($offer->to < \Carbon\Carbon::now())
Expired or Closed
@else
{{$offer->discount_rate}}% Discount
@endif
{{$offer->discount_rate}}% Discount
Offer Resources: {{$offer->seatingType}}
From: {{$offer->from}}
To: {{$offer->to}}
@if ($offer->to > \Carbon\Carbon::now())
Remaining time: {{\Carbon\Carbon::now()->diffAsCarbonInterval($offer->from)}}
@else
Closed Since: {{\Carbon\Carbon::now()->diffAsCarbonInterval($offer->to)}}
@endif
@if ($offer->to > \Carbon\Carbon::now())
@endif
{{htmlspecialchars_decode( trim($offer->description))}}
@endforeach
@else
No offers available yet.
@endif