@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($giftCardPurchases as $giftCard) @empty @include('Template::partials.empty_message') @endforelse
@lang('Trx') | @lang('Time') @lang('Product') | @lang('Quantity') @lang('Unit Price') @lang('Status') @lang('Action')
{{ $giftCard->trx }} {{ showDateTime($giftCard->created_at) }}
{{ __(@$giftCard->giftCard->product_name) }} @lang('Quantity: ') {{ $giftCard->quantity }}
{{ getAmount($giftCard->amount) }} {{@$giftCard->giftCard->recipient_currency_code}} {{ getAmount(@$giftCard->rate * $giftCard->amount) }} {{@$giftCard->giftCard->sender_currency_code}}
@php echo $giftCard->statusBadge @endphp @lang('Details')
@if ($giftCardPurchases->hasPages()) {{ paginateLinks($giftCardPurchases) }} @endif
@endsection @push('breadcrumb-plugins') @lang('New Gift Card') @endpush