This commit is contained in:
2025-05-26 21:55:54 +05:00
parent 3dc1496b45
commit 9dde39e851
3 changed files with 28 additions and 2 deletions

View File

@@ -37,9 +37,17 @@
</tr>
</thead>
<tbody>
@foreach($data->transactions as $transaction)
@foreach($transaction->transactions as $transaction_item)
<tr>
<th></th>
<th>{{ $transaction_item->trandate }}</th>
<th>{{ $transaction_item->trandate }}</th>
<th>{{ $transaction->cardMaskNumber }}</th>
<th>{{ $transaction_item->opername }}</th>
<th>YOK</th>
<th>{{ $transaction->currency }}</th>
<th>{{ $transaction->opersum }}</th>
<th>{{ $transaction->opersum }}</th>
<th>YOK</th>
</tr>
@stop
</tbody>