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

Errors

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

Unit's Detail


Floor: {{$property->inventory->floor->name}}
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}} {{env('SIZE')}}
Total Price: {{number_format($property->inventory->total_price - $property->inventory->extra_amount)}}
Net Amt.: {{number_format($property->net_pay)}}
@if($property->schedule_start_date) @endif
Unit No.: {{$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: {{date('d-m-Y', strtotime($property->schedule_start_date)) }}

Payment Scheduler


Percentage
Manual @if ($errors->has('amount_schedule')) {{ $errors->first('amount_schedule') }} @endif
@if ($errors->has('schedule_start_date')) {{ $errors->first('schedule_start_date') }} @endif
Monthly
Monthly with Quarterly
Monthly with Semi Annually
Monthly with Annually
Quarterly
SemiAnnually
Annually
Custom
@if ($errors->has('schedule_type')) {{ $errors->first('schedule_type') }} @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
  • Semi-Installment
@stop @section('js') @stop