{{ $settings->company_name }}
@if($settings->company_address) {!! nl2br($settings->company_address)!!} |
|
StockIn vs StockOut Report
@if($dateFrom)Date From: {{ date_format(date_create($dateFrom),"d-M-Y") }} @endif @if($dateTo)Date To: {{ date_format(date_create($dateTo),"d-M-Y") }} @endif Purchased & Sold By: {{$employee}}
| SL# | Emp. Name | Designation | Phone | StockIn Qty | StockOut Qty | Purchased Total({{$settings->currency_symbol}}) | Sold Total({{$settings->currency_symbol}}) |
|---|---|---|---|---|---|---|---|
| {{ $sl }} | {{ $record->emp_name }} | {{ $record->emp_designation }} | {{ $record->emp_phone }} | {{ $record->stockin_qty ?: 0 }} | {{ $record->sold_qty ?: 0 }} | {{ number_format($record->stockin_total,2) }} | {{ number_format(($record->sold_total),2) }} |
| Total StockIn Qty: | {{ $total_stockin_qty }} |
|---|---|
| Total Sold Qty: | {{ $total_sold_qty }} |
| Total Purchased Amount({{$settings->currency_symbol}}): | {{ number_format($total_purchased_amount,2) }} |
| Total Sold Amount({{$settings->currency_symbol}}): | {{ number_format($total_sold_amount,2) }} |