Skip to content

Commit

Permalink
[15.x] Indicate if invoice is paid (#1686)
Browse files Browse the repository at this point in the history
* Indicate if invoice is paid

* No amount due when paid

* wip

* wip
  • Loading branch information
driesvints authored Jul 1, 2024
1 parent 98fa78e commit 8d7e5ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion resources/views/invoice.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,13 @@
<div class="container">
<table style="margin-left: auto; margin-right: auto;" width="100%">
<tr valign="top">
<td width="160">
<td width="180">
<span style="font-size: 28px;">
Invoice

@if ($invoice->paid)
<span style="color: #0c0; font-size: 20px;">(Paid)</span>
@endif
</span>

<!-- Invoice Info -->
Expand Down

0 comments on commit 8d7e5ca

Please sign in to comment.