@extends('store.themes.modern-coffee-shop.layouts.app') @section('title', __('Special Offers')) @section('content')

{{ __('Special Offers') }}

@forelse($offers as $offer)
{{ $offer->discount_percentage }}% {{ __('OFF') }} {{ __('Valid until') }} {{ $offer->end_date->format('M d, Y') }}

{{ $offer->title }}

{{ $offer->description }}

{{ __('View Products') }}
@empty

{{ __('No active offers at the moment') }}

@endforelse
@endsection