@extends('layouts.master') @push('css') @endpush @section('content')
{{ csrf_field() }}

Sales Summary Product Wise

 
@if($saleSummaryProductWise) @foreach($saleSummaryProductWise as $row) @endforeach @endif
# Product Name Qty Returned Qty Return Total Total Grand Total
From: To: Customer: Brand:
{{ $i++ }} {{ $row['product_name'] }} {{ number_format($row['delivered_qty'], 2) }} {{ number_format($row['returned_qty'], 2) }} {{ number_format($row['return_total'], 2) }} {{ number_format($row['total'], 2) }} {{ number_format($row['grand_total'] - $row['return_total'], 2) }}
Total:0.000.000.000.000.00

@endsection