|
@lang('app.menu.contract') |
{{ ucwords($global->company_name) }}
@if (!is_null($settings))
{!! nl2br($global->address) !!}
{{ $global->company_phone }}
@endif
|
@lang('modules.contracts.contractNumber') |
#{{ $contract->id }} |
@lang('modules.projects.startDate') |
{{ $contract->start_date->format($global->date_format) }}
|
@if ($contract->end_date != null)
@lang('modules.contracts.endDate') |
{{ $contract->end_date->format($global->date_format) }}
|
@endif
@lang('modules.contracts.contractType') |
{{ $contract->contractType->name }}
|
|
|
@lang("app.client")
{{ ucwords($contract->client->name) }}
{{ ucwords($contract->client->clientDetails->company_name) }}
{!! nl2br($contract->client->clientDetails->address) !!}
|
@if ($contract->company_logo)
@endif
|
|
|
@lang('app.subject')
{{ $contract->subject }}
@lang('app.description')
{!! strip_tags($contract->contract_detail, ['p', 'b', 'strong', 'a']) !!}
@if ($contract->amount != 0)
@lang('modules.contracts.contractValue'):
{{ $contract->amount.' '.$contract->currency->currency_code }}
@endif
@if ($contract->signature)
@lang('app.signature')
{!! Html::image($contract->signature->signature, '', ['class' => '', 'height' => '75px']) !!}
({{ $contract->signature->full_name }})
@endif