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

All Pending 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 == 9) @endif @endforeach
Receipt No. Unit No. Payment Method Payment Head Received Amount Date Action
{{$receipt->receipt_number}} {{ $receipt->inventory->unit_number}}CashBankAdjustmentChequeToken Amount{{number_format($receipt->token_amount)}} PKR {{date('d-m-Y', strtotime($receipt->receipt_date)) }} View Approve Delete
@stop @section('js') @stop