@extends('backend.master') @section('content')
@foreach($details as $key=>$detail)
Name Mr./Mrs./Miss
{{$detail['full_name']}}
Father's Name/ Husband's Name
{{$detail['guardian_name']}}
Permanent Address
{{$detail['permanent_address']}}
@if($key!=0)

File Transfered

@endif
Corresspondence Address
{{$detail['correspondence_address']}}
National Identity Card Number
{{$detail['cnic']}}
Telephone No.
{{$detail['tell_no']}}
Mobile No.
{{$detail['mob_no']}}
Email:
@if(!empty($detail['email'])){{$detail['email']}} @else NA @endif
@foreach($detail->plots as $plot)

Plot's Detail

Plot No:
{{$plot->plot_no}}
Block:
{{$plot->block->block_name}}
Size:
{{$plot->plot_size}}
Dmensions:
{{$plot->plot_dimenssion}}
Plot's Price Rs:
{{$plot->plot_price}}
Plot Type
{{$plot->plot_type}}
Total Price:
@php $percentage=explode('%',$plot->plot_type); @endphp
@if(isset($percentage)){{$plot->plot_price+$plot->plot_price*(int)$percentage[0]/100}} @else $plot->plot_price @endif
Plot File No:
{{$plot->plot_file_no}}

Booking Schedule

Booking Price Rs.
{{$plot['booking_price']}}
Advance Amount.
{{$detail['advance_amount']}}
Balance RS:
{{$plot['booking_price']-$detail['advance_amount']}}
Date/Time.
{{$detail['created_at']}}
@endforeach

Next Of Kin

Name:
{{$detail['kin_full_name']}}
CNIC:
{{$detail['kin_cnic']}}
Relationship:
{{$detail['kin_relationship']}}
Mobile:
{{$detail['kin_mob_no']}}

Terms For Booking

I am interested to purchase a Plot in your residential LAKE VIEW CITY, Situated on Ghaus e Azam Road Rawalpindi. I have also read the “Terms and Condition” of booking on the back of the application form. I shall abide by the rules and regulations formed by M/s RAMZ Developers from time to time for the maintenance and smooth functioning of the scheme.

I here declare and certify that the above particulars are correct

Date:
Signature.
Thumb Impression:

1. Please Notify Change of address immediately.

2. Bank Draft / Pay Order to be made by payable to RAMZ Developers (Regd.)

All Documents
@if(count($detail->documents)>0) @php $i=1 @endphp @foreach($detail->documents as $document)
@php $file=explode('images',$document->file) @endphp

{{$i}} {{$file[1]}}

@php $i++; @endphp @endforeach @endif
@endforeach
@stop