Skip to content

Commit 8d7e5ca

Browse files
authored
[15.x] Indicate if invoice is paid (#1686)
* Indicate if invoice is paid * No amount due when paid * wip * wip
1 parent 98fa78e commit 8d7e5ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

resources/views/invoice.blade.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,13 @@
4949
<div class="container">
5050
<table style="margin-left: auto; margin-right: auto;" width="100%">
5151
<tr valign="top">
52-
<td width="160">
52+
<td width="180">
5353
<span style="font-size: 28px;">
5454
Invoice
55+
56+
@if ($invoice->paid)
57+
<span style="color: #0c0; font-size: 20px;">(Paid)</span>
58+
@endif
5559
</span>
5660

5761
<!-- Invoice Info -->

0 commit comments

Comments
 (0)