@extends($layoutView ?? 'admin.layout.app') @section('content')

{{ $property->title }}

{{ $property->property_heading ?: 'Property detail overview' }}

Edit Property Back

Overview

Head Title: {{ $property->property_head_title ?: '-' }}
Type: {{ $property->property_type ?: '-' }}
Average Night Rate: {{ $property->avg_night_rates ?: '-' }}
Featured: {{ $property->featured_prop === '1' ? 'Yes' : 'No' }}
Bedrooms: {{ $property->property_no_of_bedrooms ?: '-' }}
Sleeps: {{ $property->property_no_of_sleeps ?: '-' }}
Baths: {{ $property->property_no_of_baths ?: '-' }}
Beds: {{ $property->property_beds ?: '-' }}
Square Feet: {{ $property->property_feet ?: '-' }}
Elevator: {{ $property->property_elevator ?: '-' }}
Address: {{ $property->property_address ?: $property->address ?: '-' }}
Description:
{{ $property->description ?: '-' }}
Property Content:
{{ $property->property_content ?: '-' }}

Bed Configuration

King: {{ $property->pro_king_bed ?: '-' }}
Queen: {{ $property->pro_queen_bed ?: '-' }}
Single: {{ $property->pro_single_bed ?: '-' }}
Double: {{ $property->pro_double_bed ?: '-' }}
Twin: {{ $property->pro_twin_bed ?: '-' }}
Sofa: {{ $property->pro_sofa_bed ?: '-' }}
Bunk: {{ $property->pro_bunk_bed ?: '-' }}
Cribs: {{ $property->pro_cribs ?: '-' }}
Cot: {{ $property->pro_cot ?: '-' }}

Default Rate

Cleaning Fee: {{ $property->defaultRate->pro_cleaning_fee ?? '-' }}
Refundable Amount: {{ $property->defaultRate->pro_refundable_amt ?? '-' }}
Tax Fee: {{ $property->defaultRate->pro_tax_fee ?? '-' }}
Extra: {{ $property->defaultRate->pro_extra ?? '-' }}
Extra GST: {{ $property->defaultRate->pro_extra_gst ?? '-' }}
Weekly Discount: {{ $property->defaultRate->pro_week_dct ?? '-' }}
Monthly Discount: {{ $property->defaultRate->pro_month_dct ?? '-' }}
Currency: {{ $property->defaultRate->curency ?? '-' }}
Policies:
{{ $property->defaultRate->can_polices_rules ?? '-' }}
Notes:
{{ $property->defaultRate->notes ?? '-' }}

Recent Payments

@forelse($property->payments->take(5) as $payment)
{{ $payment->trans_name }}
{{ $payment->transaction_id }}
{{ $payment->trans_curr }} {{ $payment->trans_amt }}
@empty
No payment records found.
@endforelse
@endsection