@extends('layouts.layout-horizontal') @section('title', 'Customer Product Report') @section('css') @endsection @section('content')
| Product | Movement | Total Qty | Last Rate | Last Date | Orders |
|---|---|---|---|---|---|
| {{ $row->product_name }} | {{ $row->type }} | {{ indian_number($row->total_qty, 3) }} | {{ indian_number($row->last_rate, 2) }} | {{ \Carbon\Carbon::parse($row->last_date)->format('d-M-Y') }} | {{ $row->orders }} |
| No products for this client. | |||||
| Date | Client | Product | Type | Rate | Quantity |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($item->date)->format('d-M-Y') }} | {{ $item->party_name }} | {{ $item->product_name }} | {{ $item->type }} | {{ indian_number($item->rate, 2) }} | {{ indian_number($item->qty, 3) }} |
| No movements found for this filter. | |||||