@extends('layouts/layoutMaster')
@section('title', ' Horizontal Layouts - Forms')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
Appraisal/ Overview
- Address:
-
{{$address->unit_number ? $address->unit_number."/" : ""}}{{$address->unit_number ? $address->unit_number."/" : ""}}{{$address->street}}, {{$address->city}}
- Contact:
-
{{$appraisal->contact->first_name}} {{$appraisal->contact->last_name}}
- Price Range:
-
{{$appraisal->price_min}} {{$appraisal->price_max}}
- Appraisal Value:
-
{{$appraisal->appraisal_value}}
- Due Date:
-
{{$appraisal->due_date}}
- Interest:
-
{{$appraisal->interest}}
- Status:
-
{{$appraisal->status}}
@if($appraisal->status == 'Pending')
- Delivered Date:
-
{{$appraisal->delivered_date}}
- Delivery Type:
-
{{$appraisal->delivery_type}}
@elseif($appraisal->status == 'Lost')
- Reason Lost:
-
{{$appraisal->reason_lost}}
@endif
@if($property)
- Bedrooms:
-
{{$property->bedroom}}
- Bathrooms:
-
{{$property->bathroom}}
- Ensuites:
-
{{$property->ensuite}}
- Toilets:
-
{{$property->toilet}}
- Garage spaces:
-
{{$property->garage}}
- Carport spaces:
-
{{$property->carport}}
- Open car spaces:
-
{{$property->open_car}}
- Living areas:
-
{{$property->living}}
- House size:
-
{{$property->house_size}} {{$property->house_size_unit}}
- Land size:
-
{{$property->land_size}} {{$property->land_size_unit}}
- Energy efficiency rating:
-
{{$property->energy_efficiency_rating}}
@endif
@include('contact/new-address')
@endsection