change of invoice blade

This commit is contained in:
2021-03-18 20:37:47 +09:00
parent 30cd115050
commit c6557bab38

View File

@@ -18,7 +18,7 @@
<tr> <tr>
<td>{{ $un->invoice_id }}</td> <td>{{ $un->invoice_id }}</td>
<td>{{ number_format($un->invoice_amount, 2, ".", ",") }}</td> <td>{{ number_format($un->invoice_amount, 2, ".", ",") }}</td>
<td>{{ $un->due_date }}</td> <td>{{ $un->date_due }}</td>
</tr> </tr>
@endforeach() @endforeach()
</tbody> </tbody>
@@ -45,7 +45,7 @@
<tr> <tr>
<td>{{ $p->invoice_id }}</td> <td>{{ $p->invoice_id }}</td>
<td>{{ number_format($p->invoice_amount, 2, ".", ",") }}</td> <td>{{ number_format($p->invoice_amount, 2, ".", ",") }}</td>
<td>{{ $p->due_date }}</td> <td>{{ $p->date_due }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
@@ -71,7 +71,7 @@
<tr> <tr>
<td>{{ $l->invoice_id }}</td> <td>{{ $l->invoice_id }}</td>
<td>{{ number_format($l->invoice_amount, 2, ".", ",") }}</td> <td>{{ number_format($l->invoice_amount, 2, ".", ",") }}</td>
<td>{{ $l->due_date }}</td> <td>{{ $l->date_due }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
@@ -97,7 +97,7 @@
<tr> <tr>
<td>{{ $d->invoice_id }}</td> <td>{{ $d->invoice_id }}</td>
<td>{{ number_format($d->invoice_amount, 2, ".", ",") }}</td> <td>{{ number_format($d->invoice_amount, 2, ".", ",") }}</td>
<td>{{ $d->due_date }}</td> <td>{{ $d->date_due }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>