@extends('layouts.app') @section('title') Inentory Status Sheet @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
Inventory Status Sheet

Inventory Info

Open

Inventory count  {{$openInventoryCount}}

Inventory Value: {{number_format($openInventoryAmount)}}

Color:  

Token Hold

Inventory count  {{$tokenHoldInventoryCount}}

Inventory Value: {{number_format($tokenHoldInventoryAmount)}}

Color:  

Temporary Hold

Inventory count  {{$tempHoldInventoryCount}}

Inventory Value: {{number_format($tempHoldInventoryAmount)}}

Color:  

Company Hold

Inventory count  {{$companyHoldInventoryCount}}

Inventory Value: {{number_format($companyHoldInventoryAmount)}}

Color:  

Sold

Inventory count  {{$soldInventoryCount}}

Inventory Value: {{number_format($soldInventoryAmount)}}

Color:  



@foreach($inventories as $i) @if($i->unit_floor_id == $c) @if($i->status == \App\Inventory::open) @elseif($i->status == \App\Inventory::sold) @elseif($i->status == \App\Inventory::token_hold) @elseif($i->status == \App\Inventory::temp_hold) @elseif($i->status == \App\Inventory::hold_company) @endif @else @if($i->status == \App\Inventory::open) @elseif($i->status == \App\Inventory::sold) @elseif($i->status == \App\Inventory::token_hold) @elseif($i->status == \App\Inventory::temp_hold) @elseif($i->status == \App\Inventory::hold_company) @endif @endif @endforeach
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{$i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
{{$i->floor->name}} - {{$i->floor->unitBlock->name}}
{{$floorSqft[$i->unit_floor_id]}} {{env('SIZE')}} , Rs.{{number_format($floorValue[$i->unit_floor_id])}}
Availability : {{100 - $floorSoldPer[$i->unit_floor_id]}} %      Sold : {{$floorSoldPer[$i->unit_floor_id]}} %
@foreach($i->categories as $ca) @if($loop->last) @if(isset($categoryIcon[$ca->unit_category_id]))
@endif @else @if(isset($categoryIcon[$ca->unit_category_id])) @endif @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last) @if(isset($categoryIcon[$ca->unit_category_id]))
@endif @else @if(isset($categoryIcon[$ca->unit_category_id])) @endif @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@foreach($i->categories as $ca) @if($loop->last)
@else @endif @endforeach {{ $i->unit_number}}
@stop @section('js') @stop