@extends('user.layouts.master') @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __($page_title)]) @endsection @section('content')

{{ __($page_title) }}

@forelse ($giftCards ?? [] as $item) @empty @include('admin.components.alerts.empty2',['colspan' => 13]) @endforelse
{{ __("TRX ID") }} {{ __("Card Name") }} {{ __("Card Images") }} {{ __("receiver Email") }} {{ __("Receiver Phone") }} {{ __("Card Unit Price") }} {{ __("Card Quantity") }} {{ __("Card Total Price") }} {{ __("Exchange Rate") }} {{ __("Payable Unit Price") }} {{ __("Total Charge") }} {{ __("Payable Amount") }} {{ __("Status") }}
{{ $item->trx_id}} {{ $item->card_name}} {{ $item->recipient_email}} +{{ $item->recipient_phone}} {{ get_amount($item->card_amount,$item->card_currency)}} {{ $item->qty}} {{ get_amount($item->card_total_amount,$item->card_currency)}} {{ get_amount(1,$item->card_currency) ." = ". get_amount($item->exchange_rate,$item->user_wallet_currency)}} {{ get_amount($item->unit_amount,$item->user_wallet_currency)}} {{ get_amount($item->total_charge,$item->user_wallet_currency)}} {{ get_amount($item->total_payable,$item->user_wallet_currency)}} {{ __($item->stringStatus->value) }}
{{ get_paginate($giftCards) }}
@endsection @push('script') @endpush