@extends('layouts.app') @section('title') Edit Statement @stop @section('breadcrumb') @stop @section('content')
{{csrf_field()}}
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Add New Statement

Note: All * fields are mandatory


Customer Information


Unit Information


@if ($errors->has('unit_number')) {{ $errors->first('unit_number') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('size')) {{ $errors->first('size') }} @endif
@php $total_price=(int)$unitNumber->total_price - (int)$unitNumber->extra_amount; @endphp @if ($errors->has('total_price')) {{ $errors->first('total_price') }} @endif
@php $categories_name= ''; @endphp @foreach( $unitNumber->categories as $category) @php $categories_name = $category->category->name .','. $categories_name ; @endphp @endforeach @if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('original_boooking_date')) {{ $errors->first('original_boooking_date') }} @endif
@if ($errors->has('discount')) {{ $errors->first('discount') }} @endif
{{--
--}}
{{-- --}} @if ($errors->has('net_amount')) {{ $errors->first('net_amount') }} @endif
{{-- --}}
PKR
@if ($errors->has('newdiscount')) {{ $errors->first('newdiscount') }} @endif
@if ($errors->has('net_amount')) {{ $errors->first('net_amount') }} @endif
@if($property->booking_type == \App\CustomerProperty::normal) Installment
Full Payment @elseif($property->booking_type == \App\CustomerProperty::full_payment) Installment
Full Payment @endif @if ($errors->has('booking_type')) {{ $errors->first('booking_type') }} @endif

Dealer Rebate Information

{{-- % PKR --}} {{-- Add More --}}
{{-- --}}
@foreach($dealers_involved_in_property as $d) Name : {{$d->dealer->name}} Rebate : {{number_format($d->amount)}} @endforeach {{-- --}} @if ($errors->has('dealer_id')) {{ $errors->first('dealer_id') }} @endif

{{--
PKR @if ($errors->has('total_rebate')) {{ $errors->first('total_rebate') }} @endif
--}}
{{-- --}}

Discount Payment Terms

isDiscounted?

Payment Scheduler


Monthly
Monthly with Quarterly
Monthly with Semi Annually
Monthly with Annually
Bi Monthly
Quarterly
Quarterly with SemiAnnually
SemiAnnually
Annually
Monthly exclude Annually
Monthly exclude Quarterly
Monthly exclude Semi Annually
Quarterly exclude SemiAnnually
Custom
@if ($errors->has('schedule_type')) {{ $errors->first('schedule_type') }} @endif

@if ($errors->has('schedule_start_date')) {{ $errors->first('schedule_start_date') }} @endif
@if ($errors->has('booking_date')) {{ $errors->first('booking_date') }} @endif
@if ($errors->has('possession_date')) {{ $errors->first('possession_date') }} @endif
@if ($errors->has('allotment_date')) {{ $errors->first('allotment_date') }} @endif
@if ($errors->has('confirmation_date')) {{ $errors->first('confirmation_date') }} @endif
@if ($errors->has('development_date')) {{ $errors->first('development_date') }} @endif
@if ($errors->has('file_processing_date')) {{ $errors->first('file_processing_date') }} @endif
@if ($errors->has('registration_date')) {{ $errors->first('registration_date') }} @endif

%
@if ($errors->has('possession')) {{ $errors->first('possession') }} @endif
%
@if ($errors->has('down_payment')) {{ $errors->first('down_payment') }} @endif
%
@if ($errors->has('allotment')) {{ $errors->first('allotment') }} @endif
%
@if ($errors->has('confirmation')) {{ $errors->first('confirmation') }} @endif
%
@if ($errors->has('booking')) {{ $errors->first('booking') }} @endif
%
@if ($errors->has('development')) {{ $errors->first('development') }} @endif
%
@if ($errors->has('file_processing')) {{ $errors->first('file_processing') }} @endif
%
@if ($errors->has('registration')) {{ $errors->first('registration') }} @endif
% %
@if ($errors->has('installment')) {{ $errors->first('installment') }} @endif @if ($errors->has('installment_plan')) {{ $errors->first('installment_plan') }} @endif
@if ($errors->has('annual_installment')) {{ $errors->first('annual_installment') }} @endif

Adjust to
  • Installment
  • Down Payment
  • Possession
  • Allotment
  • Confirmation
  • Booking
  • Development
  • File Processing
  • Registration
@stop @section('js') @stop