@extends('layouts.app') @section('title') All Receipts @stop @section('breadcrumb') @stop @section('content')

All Cancel Receipts ({{number_format($totalAmount)}})

@foreach($receipts as $receipt) @if($receipt->payment_method == \App\Receipt::cash) @elseif($receipt->payment_method == \App\Receipt::bank) @elseif($receipt->payment_method == \App\Receipt::adjustment) @elseif($receipt->payment_method == \App\Receipt::cheque) @else @endif @if($receipt->payment_head == \App\Receipt::down_payment) @elseif($receipt->payment_head == \App\Receipt::possession_fee) @elseif($receipt->payment_head == \App\Receipt::installment) @elseif($receipt->payment_head == \App\Receipt::other) @else @endif @if($receipt->tax_paid_by == \App\Receipt::company) @else @endif @endforeach
Receipt No. Unit No. Payment Method Payment Head Received Amount Date Action
{{$receipt->receipt_no}} {{$receipt->property ? $receipt->property->inventory ? $receipt->property->inventory->unit_number : '' : ''}}CashBankAdjustmentChequeDown PaymentPossession FeeInstallmentOther{{number_format($receipt->amount + $receipt->tax_amount)}} PKR{{number_format($receipt->amount)}} PKR {{date('d-m-Y', strtotime($receipt->receipt_date)) }} View Delete
@stop @section('js') @stop