Skip to content

Commit

Permalink
Fix a typo in the bill's template
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-mironchik committed Aug 21, 2020
1 parent 95f5c8c commit 6dc3819
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/purchases/bills/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
@stack('name_input_end')
</th>
</tr>
@if ($invoice->contact_address || $__env->hasStack('address_input_start', 'address_input_end'))
@if ($bill->contact_address || $__env->hasStack('address_input_start', 'address_input_end'))
<tr>
<th>
@stack('address_input_start')
Expand All @@ -257,7 +257,7 @@
</th>
</tr>
@endif
@if ($invoice->contact_tax_number || $__env->hasStack('tax_number_input_start', 'tax_number_input_end'))
@if ($bill->contact_tax_number || $__env->hasStack('tax_number_input_start', 'tax_number_input_end'))
<tr>
<th>
@stack('tax_number_input_start')
Expand All @@ -268,7 +268,7 @@
</th>
</tr>
@endif
@if ($invoice->contact_phone || $__env->hasStack('phone_input_start', 'phone_input_end'))
@if ($bill->contact_phone || $__env->hasStack('phone_input_start', 'phone_input_end'))
<tr>
<th>
@stack('phone_input_start')
Expand All @@ -279,7 +279,7 @@
</th>
</tr>
@endif
@if ($invoice->contact_email || $__env->hasStack('email_start', 'email_input_end'))
@if ($bill->contact_email || $__env->hasStack('email_start', 'email_input_end'))
<tr>
<th>
@stack('email_start')
Expand Down

0 comments on commit 6dc3819

Please sign in to comment.