wip
This commit is contained in:
@@ -7,15 +7,15 @@
|
||||
</head>
|
||||
<body>
|
||||
<p><strong>FM0</strong></p>
|
||||
<p>{{ $transaction->depName }}</p>
|
||||
<p>МФО: <strong>{{ $transaction->mfo }}</strong></p>
|
||||
<p>{{ $data->depName }}</p>
|
||||
<p>МФО: <strong>{{ $data->mfo }}</strong></p>
|
||||
<p>Н/к: <strong>101301000408</strong></p>
|
||||
|
||||
<div class="section">
|
||||
<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>
|
||||
<p>Ф.И.О. владельца счета: <strong>{{ $data->clientName }}</strong></p>
|
||||
<p>за период с {{ $data->fromDate }} по {{ $data->toDate }} </p>
|
||||
|
||||
<br>
|
||||
<p>Исходящий остаток: <strong>7.73</strong></p>
|
||||
@@ -37,16 +37,16 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($transaction->transactions as $transaction_item)
|
||||
@foreach($data->transactions as $transaction)
|
||||
<tr>
|
||||
<th>{{ $transaction_item->trandate }}</th>
|
||||
<th>{{ $transaction_item->trandate }}</th>
|
||||
<th>{{ $transaction->cardMaskNumber }}</th>
|
||||
<th>{{ $transaction_item->opername }}</th>
|
||||
<th>{{ $transaction->trandate }}</th>
|
||||
<th>{{ $transaction->trandate }}</th>
|
||||
<th>{{ $data->cardMaskNumber }}</th>
|
||||
<th>{{ $transaction->opername }}</th>
|
||||
<th>YOK</th>
|
||||
<th>{{ $transaction_item->currency }}</th>
|
||||
<th>{{ $transaction_item->opersum }}</th>
|
||||
<th>{{ $transaction_item->opersum }}</th>
|
||||
<th>{{ $transaction->currency }}</th>
|
||||
<th>{{ $transaction->opersum }}</th>
|
||||
<th>{{ $transaction->opersum }}</th>
|
||||
<th>YOK</th>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
||||
Reference in New Issue
Block a user