refs #1564 for bill show page..
This commit is contained in:
parent
4f1efdb8e4
commit
004020705d
@ -199,25 +199,27 @@
|
|||||||
{{ setting('company.name') }}
|
{{ setting('company.name') }}
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@if (setting('company.address'))
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
{!! nl2br(setting('company.address')) !!}
|
{!! nl2br(setting('company.address')) !!}
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
@endif
|
||||||
<th>
|
|
||||||
@if (setting('company.tax_number'))
|
@if (setting('company.tax_number'))
|
||||||
{{ trans('general.tax_number') }}: {{ setting('company.tax_number') }}
|
|
||||||
@endif
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
@if (setting('company.phone'))
|
{{ trans('general.tax_number') }}: {{ setting('company.tax_number') }}
|
||||||
{{ setting('company.phone') }}
|
|
||||||
@endif
|
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@endif
|
||||||
|
@if (setting('company.phone'))
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
{{ setting('company.phone') }}
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
@endif
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
{{ setting('company.email') }}
|
{{ setting('company.email') }}
|
||||||
@ -244,13 +246,18 @@
|
|||||||
@stack('name_input_end')
|
@stack('name_input_end')
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@if ($invoice->contact_address || $__env->hasStack('address_input_start', 'address_input_end'))
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
@stack('address_input_start')
|
@stack('address_input_start')
|
||||||
|
@if ($bill->contact_address)
|
||||||
{!! nl2br($bill->contact_address) !!}
|
{!! nl2br($bill->contact_address) !!}
|
||||||
|
@endif
|
||||||
@stack('address_input_end')
|
@stack('address_input_end')
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@endif
|
||||||
|
@if ($invoice->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')
|
||||||
@ -260,6 +267,8 @@
|
|||||||
@stack('tax_number_input_end')
|
@stack('tax_number_input_end')
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@endif
|
||||||
|
@if ($invoice->contact_phone || $__env->hasStack('phone_input_start', 'phone_input_end'))
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
@stack('phone_input_start')
|
@stack('phone_input_start')
|
||||||
@ -269,13 +278,18 @@
|
|||||||
@stack('phone_input_end')
|
@stack('phone_input_end')
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@endif
|
||||||
|
@if ($invoice->contact_email || $__env->hasStack('email_start', 'email_input_end'))
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
@stack('email_start')
|
@stack('email_start')
|
||||||
|
@if ($bill->contact_email)
|
||||||
{{ $bill->contact_email }}
|
{{ $bill->contact_email }}
|
||||||
|
@endif
|
||||||
@stack('email_input_end')
|
@stack('email_input_end')
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@endif
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -370,7 +384,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
|
<p class="form-control-label">{{ trans_choice('general.notes', 2) }}</p>
|
||||||
<p class="text-muted long-texts">{{ $bill->notes }}</p>
|
<p class="text-muted long-texts">{!! nl2br($bill->notes) !!}</p>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user