@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Contract

@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Close Contract


View Owner Details


View Tenant Details


@if($jvs) @php $i=0; @endphp @php $i=1; @endphp @foreach($jvs as $row) @endforeach
# JV No. JV Date Amount Description
{{$i++}} {{$row->voucher_no}} {{date('d-m-Y',strtotime($row->voucher_date))}} {{number_format($row->amount,2)}} {{($crow)?$crow->master_name:''}}/ {{($crow)?date('d-m-Y',strtotime($crow->start_date)):''}} to {{($crow)?date('d-m-Y',strtotime($crow->end_date)):''}}
@endif

Transactions (Dr)
@if($rvs) @php $i=1; @endphp @foreach($rvs as $row) @if($row->entry_type=='Dr')
Debit A/c.1
Ref.No.
Description
P.Mode
Amount
Cheque No
Cheque Date
Bank
Remarks
@endif @endforeach @endif


Transaction(Dr)
@if(!$drvs)
Debit A/c.
Ref.No.
Description
P.Mode
Amount
Cheque No
Cheque Date
Bank
Remarks
@else @foreach($drvs as $drow) @if($drow->entry_type=='Dr')
Debit A/c.
Ref.No.
Description
P.Mode
Amount
Cheque No
Cheque Date
Bank
Remarks
@endif @endforeach @endif



@php $i=$orvtotal=0; @endphp @foreach($payacnts as $k => $row) @if($k>2 && $row->amount > 0 && !(in_array($row->account_id,$orv)) ) @php $i++; $orvtotal += $row->amount; @endphp @endif @endforeach @foreach($payacnts as $k => $row) @if($row->tax_amount > 0 && !(in_array($row->account_id,$txrv))) @php $i++; $orvtotal += $row->tax_amount; @endphp @endif @endforeach
#Account Name Amount
{{$i}} {{$oracarr[$k].' - '.$row->acname1}} {{number_format($row->amount,2)}}
{{$i}} {{$oractxarr[$k].' - '.$row->acname1}} {{number_format($row->tax_amount,2)}}
Total{{number_format($orvtotal,2)}}
Transaction(Dr)
@foreach($orvs as $orow) @if($orow->entry_type=='Dr')
Debit A/c.
Ref.No.
Description
P.Mode
Amount
Cheque No
Cheque Date
Bank
Remarks
@endif @endforeach


Transactions(Cr)
@foreach($orvs as $orow) @if($orow->entry_type=='Cr')
Tenant A/c
Description/Reference
Contract No
Amount
@endif @endforeach

Cancel
@stop {{-- page level scripts --}} @section('footer_scripts') @stop