@include('admin_layout.header')
@include('admin_layout.leftbar')
@include('admin_layout.navbar')
Property Information
{{ $property->property_name }}
{{ $property->address }}
{{ $property->city }}
{{ $property->state }}
{{ $property->postal_code }}
@switch($property->property_type_id) @case(1) Single Family @break @case(2) Multiple Unit @break @case(3) Commercial @break @endswitch

@if($property->active_property == 1) Active @else Inactive @endif
Units
@foreach ($unit as $units)
Unit {{ $loop->iteration }}
{{ $units->unit_name }}
{{ $units->room }}
{{ $units->kitchen }}
{{ $units->bathroom }}
{{ $units->sqfeet }}
@if(!$loop->last)
@endif @endforeach
@include('admin_layout.footer')
@include('admin_layout.script')