| @lang('Name') |
@lang('Discount Type') |
@lang('Amount') |
@lang('Status') |
@lang('Expire Date') |
@lang('Action') |
@forelse($offers as $offer)
| {{ $offer->name }} |
@if ($offer->discount_type == 1)
{{ $offer->offerType }}
@else
{{ $offer->offerType }}
@endif
|
{{ getAmount($offer->amount) }}
{{ $offer->discount_type == 1 ? gs()->cur_text : '%' }}
|
|
{{ showDateTime($offer->end_date, 'd M, Y') }} @if (now()->gt($offer->end_date))
(@lang('Expired'))
@endif
|
|
@empty
@endforelse
@if ($offers->hasPages())
{{ paginateLinks($offers) }}
@endif