@extends('layouts.app') @section('title') All Pending Statements @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
Search Statements

Pending Statements ({{$statementCount}})

@foreach($allStatements as $statement) @if($statement->status == \App\CustomerProperty::pending) @elseif($statement->status == \App\CustomerProperty::approved) @elseif($statement->status == \App\CustomerProperty::cancel) @else @endif @endforeach
# Unit # Size Member Name Net Amount Received Amount Sold By Booking Date Status Action
{{$count++}} {{$statement->inventory ? $statement->inventory->unit_number : '' }} @if($statement->inventory) @if($statement->inventory->size) {{$statement->inventory->size->name}} {{env('SIZE')}} @endif @endif {{$statement->customer ? $statement->customer->name: ''}} {{number_format($statement->net_pay)}} PKR {{number_format($receivedAmt[$statement->id])}} PKR @if($statement->dealer) {{$statement->dealer->name}} ({{$statement->dealer->dealerType->name}}) @else Company @endif {{date('d-m-Y', strtotime($statement->booking_date)) }}PendingApprovedCanceled
@stop @section('js') @stop