@extends($activeTemplate . 'layouts.master') @section('content')
@forelse ($products as $product)
@if (!empty($product->logo_urls)) {{ $product->product_name }} @endif
{{ strLimit($product->product_name, 20) }}
@if ($product->denomination_type == 'RANGE') {{ getAmount($product->min_recipient_denomination) }} {{ $product->recipient_currency_code }} - {{ getAmount($product->max_recipient_denomination) }} {{ $product->recipient_currency_code }} @else @forelse (@$product->fixed_recipient_denominations ?? [] as $fix) {{ getAmount($fix) }} {{ $product->recipient_currency_code }} @if (!$loop->last) , @endif @if ($loop->index == 3) @break @endif @empty @lang('N/A') @endforelse @endif
@empty

@lang('No gift card found') @lang('There are no available data to display on this table at the moment.')

@endforelse
@if ($products->hasPages())
{{ paginateLinks($products) }}
@endif @endsection @push('breadcrumb-plugins')
@lang('Purchase History')
@endpush @push('style') @endpush @push('script') @endpush