@extends($activeTemplate . 'layouts.pdf_layout') @section('content')

@lang('Gift Card Purchase Successful!')

@lang('Your gift card purchase has been successfully done.')

@if ($giftCardPurchase->discount > 0) @endif
@lang('Gift Card') {{ $giftCardPurchase->giftCard->product_name }}
@lang('Recipient') {{ $giftCardPurchase->recipient_email }}
@lang('TRX') {{ $giftCardPurchase->trx }}
@lang('Time') {{ showDateTime($giftCardPurchase->created_at) }}
@lang('Unit Price') {{ getAmount(@$giftCardPurchase->unit_price) }} {{ @$giftCardPurchase->giftCard->sender_currency_code }} ({{ getAmount($giftCardPurchase->amount) }} {{ @$giftCardPurchase->giftCard->recipient_currency_code }})
@lang('Quantity') {{ $giftCardPurchase->quantity }}
@lang('Subtotal') {{ showAmount($giftCardPurchase->sub_total) }}
@lang('Fee') (+) {{ showAmount($giftCardPurchase->charge) }}
@lang('Discount') (-) {{ showAmount($giftCardPurchase->discount) }}
@lang('Total') {{ showAmount($giftCardPurchase->total) }}
@lang('Status') @php echo $giftCardPurchase->statusBadge; @endphp
@endsection