@php $companyName = \App\Models\AppSetting::get('company_name','Kitchen complex'); @endphp
{{ $companyName }}

Contract {{ $contract->contract_number }}

Dear {{ $contract->contact?->first_name ?? 'Valued Client' }},

Thank you for your interest. Please find below your contract details.

Contract No.
{{ $contract->contract_number }}
Client
{{ $contract->contact?->full_name ?? '—' }}
Job Ref
{{ $contract->job?->job_number ?? '—' }}
Date
{{ now()->format('d M Y') }}
@if($contract->contract_price)
Contract Price
${{ number_format($contract->contract_price, 2) }}
Deposit (%)
{{ $contract->deposit_pct }}%
Deposit Amount
${{ number_format($contract->contract_price * $contract->deposit_pct / 100, 2) }}
@endif @if($contract->inclusions)
Inclusions
{{ $contract->inclusions }}
@endif @if($contract->exclusions)
Exclusions
{{ $contract->exclusions }}
@endif @if($contract->terms)
Terms & Conditions
{{ $contract->terms }}
@endif @if($contract->notes)
Notes
{{ $contract->notes }}
@endif

Please pay the deposit amount for further progress. If you have any questions, please contact us.

Kind regards,
{{ $companyName }}
{{ \App\Models\AppSetting::get('company_phone') }} | {{ \App\Models\AppSetting::get('company_email') }}