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

{{ __(@$page_title) }}

@if(isset($get_card_transactions)) @foreach($get_card_transactions ?? [] as $key => $value)

{{ @$value['trx_type'] }}

{{ __(@$value['status']) }}

{{ get_amount($value['enter_amount'] ?? 0, $value['card_currency'],get_wallet_precision() ) }}

{{ date("M-d-Y",strtotime($value['created_at'] ?? '')) }}
{{--
{{ __("Card ULID") }}
{{ @$value['ulid'] }}
--}}
{{ __("AppLTrxID") }}
{{ @$value['trx_id'] }}
{{__("Amount Type")}}
{{ @$value['amount_type'] }}
@endforeach @else
{{ __("No Record Found!") }}
@endif
@endsection @push('script') @endpush