@extends('docs.master_2', ['title'=> 'Receipt '.$model->number]) @section('content')

Receipt No.

{{ $model->number }}

 

Date :

{{date('d-M-Y', strtotime($model->created_at))}}

Recieved with thanks from Mr./Mrs./Miss.

{{$model->customername}}

against Unit

{{$model->unitname}}

Building

{{$model->buildingname}}

Project

{{$model->projectname}}

On Account of:

{{($model->paymenttypedetail)?$model->paymenttypedetail:'-'}}

Amount in words:

{{ convert_number_to_words($model->amount_received)}}

Instrument No.

{{($model->chq_no) ? $model->chq_no : '-' }}

Dated:

{{ date('d-M-Y', strtotime($model->payment_date))}}

Drawn on Bank

{{($model->bankname)?$model->bankname:'-'}}

City

{{($model->cityname) ? $model->cityname : '-'}}

Branch

{{($model->branch) ? $model->branch : '-'}}



AED Rs.

{{ number_format($model->amount_received,0)}} /-

Depositor's Name

{{ $model->depositor_name }}

Tel

{{($model->depositor_phone)? $model->depositor_phone : '-'}}





 
@endsection