@if(0 < count($giftCard))
@forelse($giftCard as $key => $item)
@lang(optional($item->details)->name)
@if($item->discount_amount) {{ $item->discount_amount }}{{ $item->discount_type == '0' ? '' : '%' }} @endif @if($item->featured == '1') @lang('featured') @endif

{{ \Illuminate\Support\Str::limit(optional($item->details)->name, 15) }}

@empty

@lang('No gift cards available.')

@endforelse
@endif