Merge pull request #1575 from pavel-mironchik/master

Fix a typo in the bill's template
This commit is contained in:
Denis Duliçi 2020-08-22 16:06:21 +03:00 committed by GitHub
commit 2b6494e4a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,7 @@
@stack('name_input_end') @stack('name_input_end')
</th> </th>
</tr> </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> <tr>
<th> <th>
@stack('address_input_start') @stack('address_input_start')
@ -257,7 +257,7 @@
</th> </th>
</tr> </tr>
@endif @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> <tr>
<th> <th>
@stack('tax_number_input_start') @stack('tax_number_input_start')
@ -268,7 +268,7 @@
</th> </th>
</tr> </tr>
@endif @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> <tr>
<th> <th>
@stack('phone_input_start') @stack('phone_input_start')
@ -279,7 +279,7 @@
</th> </th>
</tr> </tr>
@endif @endif
@if ($invoice->contact_email || $__env->hasStack('email_start', 'email_input_end')) @if ($bill->contact_email || $__env->hasStack('email_start', 'email_input_end'))
<tr> <tr>
<th> <th>
@stack('email_start') @stack('email_start')