{{-- @extends('docs.master', ['title' => 'Stock Report']) --}} @extends(($data['value'] == 2) ? 'docs.mastertwo' : 'docs.master', ['title'=> 'Stock Report ']) @section('content')
@if($data['value'] ==2) @section('heading_two')

Inventory Report

@endsection @endif

Sales & Availability Report

As On
{{date('M-d-Y h:i A')}}



{{$i=1}} {{-- {{dd($model)}} --}} @foreach($model as $item) {{-- {{ number_format($item->debit - $item->credit,2) }} --}} @endforeach
Available Sold Total
# Project Unit Area Price Unit Area Price Receipts Unit Area Net Price
{{$i++}} {{$item->projectname}} {{$item->available_count}} {{number_format($item->available_area,0)}} {{number_format($item->available_price,0)}} {{$item->sold_count}} {{number_format($item->total_sale_area,0)}} {{number_format($item->total_sale,0)}} {{number_format($item->total_receipts,0)}} {{$item->total_unit}} {{number_format($item->total_area,0)}}{{number_format($item->total_price,0)}}

Printed On: {{date('d-m-Y h:i:s A')}} by {{Auth::User()->name}}

@endsection