@forelse ($transactions as $key => $item) @empty @include('admin.components.alerts.empty',['colspan' => 15]) @endforelse
{{ __("TRX ID") }} {{ __("User") }} {{ __("Card Name") }} {{ __("Card Images") }} {{ __("receiver Email") }} {{ __("Receiver Phone") }} {{ __("Payable Unit Price") }} {{ __("Total Charge") }} {{ __("Payable Amount") }} {{ __("Time")}} {{ __("Status") }} {{ __("Action")}}
{{ $item->trx_id}} {{ $item->user->fullname }} {{ $item->details->card_info->card_name??""}} {{ $item->details->card_info->recipient_email??""}} +{{ $item->details->card_info->recipient_phone??""}} {{ get_amount($item->details->charge_info->sender_unit_price,$item->details->charge_info->wallet_currency)}} {{ get_amount($item->charge->total_charge,$item->details->charge_info->wallet_currency)}} {{ get_amount($item->payable,$item->details->charge_info->wallet_currency)}} {{ $item->created_at->format('d-m-y h:i:s A') }} {{ __($item->stringStatus->value) }} @include('admin.components.link.info-default',[ 'href' => setRoute('admin.gift.card.details', $item->id), 'permission' => "admin.gift.card.details", ])