@extends('layouts.dashboard') @section('title', 'Contract Details') @section('header', 'Rental Agreement Details') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')
Contract Number
{{ $contract->contract_number }}
Contract Type
{{ $contract->contract_type }}
Total Amount
{{ number_format($contract->total_amount, 0) }} {{ $contract->currency }}
Payment Type
{{ $contract->payment_type }}
Installment Count
{{ $contract->installment_count ?? '-' }}
Installment Amount
{{ number_format($contract->installment_amount ?? 0, 0) }} {{ $contract->currency }}
Start Date
{{ \Carbon\Carbon::parse($contract->start_date)->format('M d, Y') }}
End Date
{{ \Carbon\Carbon::parse($contract->end_date)->format('M d, Y') }}
Created At
{{ $contract->created_at->format('M d, Y H:i') }}
Signed At
{{ $contract->signed_at ? \Carbon\Carbon::parse($contract->signed_at)->format('M d, Y') : 'Not signed' }}
Terms & Conditions
{{ $contract->terms }}
Additional Notes
{{ $contract->notes }}
Property Name
{{ $contract->property->title }}
Type
{{ $contract->property->type }}
Status
{{ $contract->property->status }}
Address
{{ $contract->property->address }}, {{ $contract->property->city }}
Bedrooms
{{ $contract->property->bedrooms }}
Bathrooms
{{ $contract->property->bathrooms }}
Area
{{ $contract->property->area }} m²
Property information not available
@endifName
{{ $contract->customer->name }}
{{ $contract->customer->email }}
Phone
{{ $contract->customer->phone }}
Customer information not available
@endifNo invoices yet
@endifNo payments yet
@endifNo receipts yet
@endif{{ $contract->owner->name }}
{{ $contract->owner->email }}
Owner information not available
@endif