Added new stack for company custom fields..
This commit is contained in:
parent
502c7b0d31
commit
48ae7a5a8a
|
|
@ -293,6 +293,7 @@ return [
|
|||
'contact_type' => 'vendor',
|
||||
'inventory_stock_action' => 'increase', // increases stock in stock tracking
|
||||
'hide' => [],
|
||||
'class' => [],
|
||||
'notification' => [
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -38,17 +38,22 @@
|
|||
@endif
|
||||
|
||||
@if (! $hideCompanyDetails)
|
||||
@stack('company_name_input_start')
|
||||
@if (! $hideCompanyName)
|
||||
<p>{{ setting('company.name') }}</p>
|
||||
@endif
|
||||
@stack('company_name_input_end')
|
||||
|
||||
@stack('company_address_input_start')
|
||||
@if (! $hideCompanyAddress)
|
||||
<p>
|
||||
{!! nl2br(setting('company.address')) !!}
|
||||
{!! $document->company->location !!}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_address_input_end')
|
||||
|
||||
@stack('company_tax_number_input_start')
|
||||
@if (! $hideCompanyTaxNumber)
|
||||
@if (setting('company.tax_number'))
|
||||
<p>
|
||||
|
|
@ -59,7 +64,9 @@
|
|||
</p>
|
||||
@endif
|
||||
@endif
|
||||
@stack('company_tax_number_input_end')
|
||||
|
||||
@stack('company_phone_input_start')
|
||||
@if (! $hideCompanyPhone)
|
||||
@if (setting('company.phone'))
|
||||
<p>
|
||||
|
|
@ -67,12 +74,15 @@
|
|||
</p>
|
||||
@endif
|
||||
@endif
|
||||
@stack('company_phone_input_end')
|
||||
|
||||
@stack('company_email_input_start')
|
||||
@if (! $hideCompanyEmail)
|
||||
<p class="small-text">
|
||||
{{ setting('company.email') }}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_email_input_end')
|
||||
@endif
|
||||
@stack('company_details_end')
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -36,27 +36,34 @@
|
|||
@endif
|
||||
|
||||
@if (! $hideCompanyDetails)
|
||||
|
||||
@stack('company_name_input_start')
|
||||
@if (! $hideCompanyName)
|
||||
<p>{{ setting('company.name') }}</p>
|
||||
@endif
|
||||
@stack('company_name_input_end')
|
||||
|
||||
|
||||
@stack('company_address_input_start')
|
||||
@if (! $hideCompanyAddress)
|
||||
<p>
|
||||
{!! nl2br(setting('company.address')) !!}
|
||||
{!! $document->company->location !!}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_address_input_end')
|
||||
|
||||
@stack('company_tax_number_input_start')
|
||||
@if (! $hideCompanyTaxNumber)
|
||||
|
||||
@if (setting('company.tax_number'))
|
||||
<p>
|
||||
{{ trans('general.tax_number') }}: {{ setting('company.tax_number') }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@endif
|
||||
@stack('company_tax_number_input_end')
|
||||
|
||||
@stack('company_phone_input_start')
|
||||
@if (! $hideCompanyPhone)
|
||||
@if (setting('company.phone'))
|
||||
<p>
|
||||
|
|
@ -64,10 +71,13 @@
|
|||
</p>
|
||||
@endif
|
||||
@endif
|
||||
@stack('company_phone_input_end')
|
||||
|
||||
@stack('company_email_input_start')
|
||||
@if (! $hideCompanyEmail)
|
||||
<p class="small-text">{{ setting('company.email') }}</p>
|
||||
@endif
|
||||
@stack('company_email_input_end')
|
||||
@endif
|
||||
@stack('company_details_end')
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -35,20 +35,25 @@
|
|||
</p>
|
||||
@endif
|
||||
|
||||
@stack('company_name_input_start')
|
||||
@if (! $hideCompanyName)
|
||||
<p class="text-white">
|
||||
{{ setting('company.name') }}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_name_input_end')
|
||||
|
||||
@if (! $hideCompanyDetails)
|
||||
@stack('company_address_input_start')
|
||||
@if (! $hideCompanyAddress)
|
||||
<p class="text-white">
|
||||
{!! nl2br(setting('company.address')) !!}
|
||||
{!! $document->company->location !!}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_address_input_end')
|
||||
|
||||
@stack('company_tax_number_input_start')
|
||||
@if (! $hideCompanyTaxNumber)
|
||||
<p class="text-white">
|
||||
@if (setting('company.tax_number'))
|
||||
|
|
@ -60,7 +65,9 @@
|
|||
@endif
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_tax_number_input_end')
|
||||
|
||||
@stack('company_phone_input_start')
|
||||
@if (!$hideCompanyPhone)
|
||||
<p class="text-white">
|
||||
@if (setting('company.phone'))
|
||||
|
|
@ -68,12 +75,15 @@
|
|||
@endif
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_phone_input_end')
|
||||
|
||||
@stack('company_email_input_start')
|
||||
@if (!$hideCompanyEmail)
|
||||
<p class="small-text text-white">
|
||||
{{ setting('company.email') }}
|
||||
</p>
|
||||
@endif
|
||||
@stack('company_email_input_end')
|
||||
@endif
|
||||
@stack('company_details_end')
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue