@extends('layouts.layoutapp') @section('content')
Manage wallet credits and reversals for {{ $client->user->name ?? '' }} {{ $client->user->last_name ?? '' }}
Name: {{ $client->user->name ?? '' }} {{ $client->user->last_name ?? '' }}
Phone: {{ $client->user->phone ?? '' }}
Email: {{ $client->user->email ?? '' }}
User ID: {{ $client->user_id }}
| Transaction No | Type | Amount | Reference | Remarks | Date |
|---|---|---|---|---|---|
|
{{ $txn['transaction_no'] ?? '-' }} |
{{ strtoupper($txn['transaction_type'] ?? '-') }} |
INR {{ number_format((float) ($txn['amount'] ?? 0), 2) }} |
{{ $txn['reference_type'] ?? '' }} @if (!empty($txn['reference_id'])) #{{ $txn['reference_id'] }} @endif |
{{ $txn['remarks'] ?? '-' }} |
{{ isset($txn['created_at']) ? \Carbon\Carbon::parse($txn['created_at'])->format('d/m/Y H:i') : '-' }} |
{{ json_encode($balanceResponse, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}