@extends( 'layouts.app' )
@section('title')
Project Account Detail
@stop
@section('breadcrumb')
- Home
- Paradigm Account
- Account Detail
@stop
@section('content')
Payment Information
Unit No |
{{$amount->inventory->unit_number}} |
Payment Head |
@if($amount->payment_head == \App\ProjectAccount::booking)
Booking |
@elseif($amount->payment_head == \App\ProjectAccount::confirmation)
Confirmation |
@elseif($amount->payment_head == \App\ProjectAccount::installment)
Installment |
@elseif($amount->payment_head == \App\ProjectAccount::possession)
Possession |
@endif
Payment Type |
@if($amount->payment_type == \App\ProjectAccount::pay_order)
Pay Order |
@else
Adjacement |
@endif
@if($amount->payment_type == \App\ProjectAccount::pay_order)
Pay Order Title |
{{$amount->pay_order_title}} |
Pay Order Bank |
{{$amount->bank->name}} |
Pay Order Date |
{{date('d-m-Y', strtotime($amount->pay_order_date)) }} |
@endif
@if($amount->payment_type == \App\ProjectAccount::adjacement)
Adjacement Type |
@if($amount->adjacement_type == \App\ProjectAccount::property)
Property |
@elseif($amount->adjacement_type == \App\ProjectAccount::vehicle)
Vehicle |
@else
|
@endif
@endif
Description
|
{{$amount->description}}
|
Depositor Name |
{{$amount->depositor_name}} |
Amount |
{{$amount->amount}} |
Files
Receipt Image |
@foreach($amount->files as $file)
|
@endforeach
Updated at |
{{$amount->updated_at}} |
Created at |
{{$amount->created_at}} |
@stop