This commit is contained in:
2025-05-26 21:40:03 +05:00
parent 808742b781
commit d0d26039d3
3 changed files with 38 additions and 18 deletions

View File

@@ -7,13 +7,17 @@
</head>
<body>
<p><strong>FM0</strong></p>
<p>{{ $transactoin->depName }}</p>
<p>{{ $transaction->depName }}</p>
<p>МФО: <strong>{{ $transaction->mfo }}</strong></p>
<p>Н/к: <strong>101301000408</strong></p>
<div class="section">
<p>Текущая дата: <strong>15/05/2025 17:52:59</strong></p>
<p class="title">ВЫПИСКА ПО СЧЕТУ КЛИЕНТА №9341304011</p>
<p>Ф.И.О. владельца счета: <strong>MYRATLYÝEW DÖWRAN AŞYRMUHAMMEDOWIÇ</strong></p>
<p>Текущая дата: <strong>{{ now()->format('H:i, d.m.Y') }}</strong></p>
<p>ВЫПИСКА ПО СЧЕТУ КЛИЕНТА №9341304011</p>
<p>Ф.И.О. владельца счета: <strong>{{ $transaction->clientName }}</strong></p>
<p>за период с {{ $transaction->fromDate }} по {{ $transaction->toDate }} </p>
<br>
<p>Исходящий остаток: <strong>7.73</strong></p>
<p>Входящий остаток: <strong>361.92</strong></p>
</div>
@@ -33,7 +37,11 @@
</tr>
</thead>
<tbody>
<!-- Fill rows here -->
@foreach($data->transactions as $transaction)
<tr>
<th></th>
</tr>
@stop
</tbody>
</table>