Print date: {{ date('Y-m-d h:i:s A') }}

@if($settings->company_address) {!! nl2br($settings->company_address)!!}
@endif PH: {{ $settings->company_phone }}

logo }}" style="margin-top: 10px; width:150px;">

Current Stock Report

Date:  {{$date}}

@if($records) @php $sl=1; $total_qty = 0; $total_qty_stockin = 0; $total_qty_sold = 0; $total_stock_value = 0; @endphp @foreach($records as $record) @php $sl++; $total_qty = $total_qty + $record->qty; $total_qty_stockin = $total_qty_stockin + $record->stockin_qty; $total_qty_sold = $total_qty_sold + $record->sold_qty; $total_stock_value = $total_stock_value + ($record->qty*$record->price); @endphp @endforeach @endif
SL# Name Type Serial No Description Stockin Qty Sold Qty Available Qty Unit price({{$settings->currency_symbol}})
{{ $sl }} {{ $record->item_name }} {{ $record->type }} {{ $record->serial_no }} {{ $record->description }} {{ $record->stockin_qty ?: 0 }} {{ $record->sold_qty ?: 0 }} {{ $record->qty }} {{ number_format($record->price,2) }}
Total Stockin Qty: {{ $total_qty_stockin }}
Total Sold Qty: {{ $total_qty_sold }}
Total Available Qty: {{ $total_qty }}
Total Stock Value({{$settings->currency_symbol}}): {{ number_format($total_stock_value,2) }}