@extends('layouts.app') @section('title') Update Statement @stop @section('breadcrumb') @stop @section('css') @stop @section('content') @php $size= ''; if($projectType->id == \App\ProjectType::society){ $size= \App\ProjectType::society_size; } else { $size= \App\ProjectType::high_rise_size; } @endphp @php $map= ' '; if($projectType->id == \App\ProjectType::society){ $map= \App\ProjectType::society_map; } else { $map= \App\ProjectType::high_rise_map; } @endphp
{{csrf_field()}} @if($errors->any())

Errors

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

Property Information


Unit's Details


{{$map}}: @if($property->inventory->floor){{$property->inventory->floor->name}}@endif
Category: @foreach($property->inventory->categories as $c) @if($loop->last) {{$c->category->name}} ({{$c->category->percent}} %) @else {{$c->category->name}} ({{$c->category->percent}} %), @endif @endforeach
Size: {{$property->inventory->size->name}} {{$size}}
Total Price: {{number_format($property->inventory->total_price - $property->inventory->extra_amount)}}
Net Amt.: {{number_format($property->net_pay)}}
Unit #: {{$property->inventory->unit_number}}
Unit Type: {{$property->inventory->type->name}}
Discount: {{$property->discount }}
Category Cost: {{number_format($property->inventory->extra_amount) }}
Booking Date: {{date('d-m-Y', strtotime($property->booking_date)) }}
Schedule Start Date: @if($property->schedule_start_date) {{date('d-m-Y', strtotime($property->schedule_start_date)) }} @endif

Payment Information


@foreach($property->statement as $statement) @if($statement->payment_head == \App\CustomerStatement::down_payment) @elseif($statement->payment_head == \App\CustomerStatement::possession) @elseif($statement->payment_head == \App\CustomerStatement::installment) @if($i == 0) @endif @elseif($statement->payment_head == \App\CustomerStatement::other) @elseif($statement->payment_head == \App\CustomerStatement::allotment) @elseif($statement->payment_head == \App\CustomerStatement::confirmation) @elseif($statement->payment_head == \App\CustomerStatement::booking) @elseif($statement->payment_head == \App\CustomerStatement::development) @elseif($statement->payment_head == \App\CustomerStatement::file_processing) @elseif($statement->payment_head == \App\CustomerStatement::registration) @else @endif @if($statement->receipt) @if($statement->receipt->payment_mode == \App\Receipt::cash) @elseif($statement->receipt->payment_mode == \App\Receipt::bank) @elseif($statement->receipt->payment_mode == \App\Receipt::cheque) @elseif($statement->receipt->payment_mode == \App\Receipt::adjacement) @else @endif @else @endif @if($statement->received) @if($statement->payment_head == \App\CustomerStatement::installment) @endif @if($statement->payment_head == \App\CustomerStatement::down_payment) @endif @else @endif @if($statement->payment_head == \App\CustomerStatement::installment) @endif @endforeach
Payment Head Due Date Due Amt. Received Amt. Payment Mode Receipt # Receipt Date Balance Amt.
Down PaymentPossession FeeInstallment - {{$count++}}OtherAllotmentConfirmationBookingDevelopmentFile ProcessingRegistration {{date('d-m-Y', strtotime($statement->due_date)) }} {{number_format($statement->due)}} {{number_format($statement->received)}}CashBank transferChequeAdjustment {{$statement->rcpt_no}} {{ $statement->rcpt_date ? date('d-m-Y', strtotime($statement->rcpt_date)) : '' }}{{number_format($total)}}
Total {{number_format($due)}} {{number_format($received)}} {{number_format($total)}}
@if ($errors->has('schedule_start_date')) {{ $errors->first('schedule_start_date') }} @endif
@if($property->sms_alert) Automatic Sms Alerts
@else Automatic Sms Alerts
@endif @if($property->email_alert) Automatic Email Alerts @else Automatic Email Alerts @endif

Update Schedule


@stop @section('js') @stop