@extends('_version_02.commons.layouts.admin') @section('content') @include('_version_02.commons.layouts.partials._alert') @include('_version_02.utility_charges.meter_payment_received_debugs.partials._utransaction_debug_modal')
Re-query

Re-query payment gateway to check if any transaction fail to capture.

Check by User

Details view on user transaction, display and patch the user transaction.

@if(isset($is_transaction_listing))
@php $priority_counter = 1 ; @endphp @foreach($cols as $col) @if($col == 'id') @elseif(str_contains($col, '_id')) @else @endif @php $priority_counter ++ ; @endphp @endforeach @php $priority_counter = 1 ; @endphp @foreach($model as $index => $row) @foreach($row->toArray() as $key => $value) @if($key != 'id' && $key != 'is_paid' && $key != 'pay_by' && $key != 'amount') @elseif($key == 'amount') @elseif($key == 'is_paid') @elseif($key == 'pay_by') @endif @endforeach @endforeach
#{{App\Language::trans(ucwords(str_replace('_id', '', $col)))}}{{App\Language::trans(ucwords(str_replace('_', ' ', $col)))}}
{{$index+1}}{{$value}}{{$row->setDouble($value)}}{{($value == true ? 'Success' : 'Fail')}}{{App\Customer::get_customer_name_by_id($value)}}
@endif @endsection @section('script') @endsection