@extends('layouts.app') @section('title') Edit Development Charges @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; } @endphps
{{ csrf_field() }}
@if ($errors->any())

Errors

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

Edit Development Charges

Note: All * fields are mandatory


Update Unit Type


@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 = $customer_property->inventory->total_price - $customer_property->inventory->extra_amount; @endphp @if ($errors->has('total_price')) {{ $errors->first('total_price') }} @endif
@php $name = ''; for ($i = 0; $i < sizeof($customer_property->inventory->categories); $i++) { $name += $customer_property->inventory->categories[$i]->category->name + ', '; } @endphp
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('net_amount')) {{ $errors->first('net_amount') }} @endif

Payment Scheduler


@php $total_count = sizeof($customer_statement); @endphp
Full Payment
1)?'checked':''}}> Custom
@if ($errors->has('schedule_type')) {{ $errors->first('schedule_type') }} @endif
{{-- 3rd row --}}
@if($total_count == 1) @foreach($customer_statement as $cs) @if($cs->due == $cs->received)
@else
@endif @endforeach @else
@endif
   
@stop @section('js') @stop