@extends('layouts/layoutMaster')
@section('title', ' Horizontal Layouts - Forms')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
Contact/ Overview
-
-
-
-
@if($contact->photo)
@else
@endif
- First Name:
- {{$contact->first_name}}
- Last Name:
- {{$contact->last_name}}
- Full Legal Name:
- {{$contact->full_name}}
- Mobile :
- {{$contact->mobile}}
- Email :
- {{$contact->email}}
@if($contact->residingAddress)
- Residing Address:
- {{$residingAddress->unit_number ? $residingAddress->unit_number."/" : ""}}{{$residingAddress->street}}, {{$residingAddress->city}}
@endif
@foreach($contact->full_address as $key => $own_address)
- {{$key == 0 ? "Properties Owned:" : ''}}
- {{$own_address->unit_number ? $own_address->unit_number."/" : ""}}{{$own_address->street}}, {{$own_address->city}}
@endforeach
- Tags :
- {{implode(', ', $tag_list)}}
- Owner / Tenant :
- {{$contact->rent_type}}
- Social Links :
- {{$contact->social_links}}
- Notes :
- {{$contact->notes}}
- Listing Types:
- {{implode(', ', $listing_types)}}
- Land Size:
- {{$contact->land_size_min}} ~ {{$contact->land_size_max}} {{$contact->land_size_unit }}
- Floor Size:
- {{$contact->floor_size_min}} ~ {{$contact->floor_size_max}} {{$contact->floor_size_unit }}
- Car Spaces:
- {{$contact->car_spaces_min}} ~ {{$contact->car_spaces_max}}
- Suburbs:
- {{$contact->suburbs}}
- Property Tags:
- {{implode(", ", $property_tags)}}
- Comments:
- {{$contact->comments}}
Related Contact |
Relationship |
Note |
Actions |
@foreach($relation_list as $item)
{{$item->target->first_name}}
|
{{$item->relationship}} |
{{$item->note}}
|
|
@endforeach
@endsection