@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) }}

{{--
--}} {{--
--}} {{-- {{__("Webhook Logs")}}--}} {{--
--}} {{--
--}}
@if(isset($data) && $data['data'] != null) @if(array_key_exists('data', $data )) {{-- @foreach($data['data']['card_transactions'] as $key => $value)--}} @foreach($data['data']['card_transactions']['transactions'] as $key => $value)

{{ @$value['narrative']??'' }}

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

{{ @$value['amount'] }} {{ @$value['currency'] ?? get_default_currency()['symbol'] }}

{{--

{{ @$value['amount'] }} {{ @$value['currency'] }}

--}} {{--
{{ date("M-d-Y",strtotime($value['createdAt'])) }}
--}}
{{ date("M-d-Y",strtotime($value['created_at'])) }}
{{ __("web_trx_id") }}
{{ @$value['id'] }}
{{__("Payment Method")}}
{{-- {{ @$value['method'] }}--}} {{ @$value['payment_method'] }}
{{ __("Amount") }}
{{-- {{ @$value['amount'] }} {{ @$value['currency'] }}--}} {{ @$value['amount'] }} {{ @$value['currency'] ?? get_default_currency()['symbol'] }}
{{ __("Reference") }}
{{-- {{ @$value['reference'] }} --}} {{ @$value['reference'] ?? @$value['merchant'] }}
@endforeach @endif @else
{{ __("No data found!") }}
@endif
@endsection @push('script') @endpush