@extends('dealer.master') @section('content')
Member Information
  • Registration No: {{date('dmY',strtotime($detail->created_at))}}{{$detail->id}}
  • CNIC:{{$detail->cnic}}
  • Member Name: {{$detail->full_name}}
  • S/O or D/O or W/O: {{$detail->guardian_name}}
  • Address: {{$detail->permanent_address}}
  • Phone office, Mobile: {{$detail->mob_no}}
@foreach($detail->plots as $plot)
File/Plot Information
@php $percentage=explode('%',$plot->plot_type); @endphp
  • Booking Date/Time: {{$detail->created_at}}
  • Block Name: {{$plot->block->block_name}}
  • Plot No: {{$plot->plot_no}}
  • Type: {{$percentage[1]}}
  • Plot Size: {{$plot->plot_size}}
  • Category: Residential
Payment Detail
Total Price:{{$plot->total_price}} Paid Amount:{{$plot->booking_price}}
@php $discount=$plot->total_price-$plot->booking_price @endphp @php $netPrice @endphp @php $netPrice=$plot->total_price-$discount @endphp
Discount: {{$discount}}O.S Amount:@if($netPrice-$detail->advance_amount>0){{$netPrice-$detail->advance_amount}} @else 0 @endif
Net Price:{{$netPrice}}
Out Standing Amount will be Paid in Installing As per Schedule
@endforeach
@endsection