@forelse ($transactions as $item)

{{ __("Redeem Voucher") }}

{{ $item->stringStatus->value }}

{{ get_amount($item->request_amount,$item->request_currency) }}

{{ get_amount($item->total_payable,$item->request_currency) }}
{{ __('Code') }}
{{ $item->code }}
{{ __('Created By') }}
{{ $item->user->email }}
{{ __('Amount') }}
{{ get_amount($item->request_amount,$item->request_currency,2) }}
@if ($item->transaction != null)
{{ __('Transaction ID') }}
{{ $item->transaction->trx_id }}
{{ __("Exchange Rate") }}
1 {{ $item->request_currency }} = {{ get_amount($item->transaction->exchange_rate,$item->request_currency,3) }}
@endif
{{ __("Fees & Charge") }}
{{ @get_amount($item->total_charge,$item->request_currency) }}
{{ __("Total Payable") }}
{{ @get_amount($item->total_payable,$item->request_currency) }}
@if ($item->remark != null)
{{ __('Remarks') }}
{{ $item->remark }}
@endif @if ($item->reject_reason != null)
{{ __('Reject Reason') }}
{{ $item->reject_reason }}
@endif @if ($item->status == 2)
{{ __('Action') }}
@endif
@empty
{{ __('No data found!') }}
@endforelse {{ get_paginate($transactions) }}