@extends('layouts.app') @section('title') All Balloting Map Files @stop @section('breadcrumb')
@stop @section('css') @stop @section('content')Total Inventories are : {{ $total_val }}
# | Unit # | Size | Customer | Net Amount | Booking Date | Status | {{--Action | --}}|||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $count++ }} | {{ $statement->inventory ? $statement->inventory->unit_number : '' }} | @if ($statement->inventory) @if ($statement->inventory->size) {{ $statement->inventory->size->name }} @if ($projectType->id == \App\ProjectType::society) {{ \App\ProjectType::society_size }} @else {{ \App\ProjectType::high_rise_size }} @endif @endif @endif | {{ $statement->customer ? $statement->customer->name . '---' . $statement->customer->cnic : '' }} |
{{ number_format($statement->net_pay) }} | {{ date('d-m-Y', strtotime($statement->booking_date)) }} | @if($statement->inventory->inventory_type == \App\Inventory::allocated)Allocated | @elseif($statement->inventory->inventory_type == \App\Inventory::unallocated)Unallocated | @else@endif {{-- @if ($statement->status == \App\CustomerProperty::pending) | Pending | @elseif($statement->status == \App\CustomerProperty::approved)Approved | @elseif($statement->status == \App\CustomerProperty::cancel)Canceled | @elseif($statement->status == \App\CustomerProperty::block)Block | @else@endif --}} {{-- | --}} |