@extends('layouts.app') @section('title') All Refund Statements @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
@permission('list-membership')   Add New Refund @endpermission

Refund Tokens

@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
# Unit # Size Payment Mode Payment Head Received Token Amount Booking Date Status Action
{{$count++}} {{$receipt->inventory->unit_number}} @if($receipt->inventory) @if($receipt->inventory->size) {{$receipt->inventory->size->name}} {{env('SIZE')}} @endif @endif CashBankAdjustmentChequeToken Amount{{number_format($receipt->token_amount)}} PKR {{date('d-m-Y', strtotime($receipt->receipt_date)) }} @if($receipt->is_approved == 2)
  • Refund
  • @endif
    View
    @stop @section('js') @stop