Skip to content

Commit

Permalink
Better align items
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Feb 29, 2024
1 parent f13df6c commit 1a9bebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/invoice.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@

<tr>
<td></td>
<td colspan="{{ $invoice->hasTax() ? 3 : 2 }}" align="right">
<td colspan="{{ $invoice->hasTax() ? 3 : 2 }}">
@if ($coupon->isPercentage())
{{ $coupon->name() }} ({{ $coupon->percentOff() }}% Off)
@else
Expand All @@ -259,7 +259,7 @@
@unless ($invoice->isNotTaxExempt())
<tr>
<td></td>
<td colspan="{{ $invoice->hasTax() ? 3 : 2 }}" align="right">
<td colspan="{{ $invoice->hasTax() ? 3 : 2 }}">
@if ($invoice->isTaxExempt())
Tax is exempted
@else
Expand Down

0 comments on commit 1a9bebe

Please sign in to comment.