@include('layouts.header')
@include('layouts.sidebar')

POS Record

@if (session('success')) @endif @if (session('error')) @endif @if ($errors->has('phno')) @endif
POS Record
@php $no = '1'; @endphp @foreach ($invoices as $invoice) @foreach ($invoice->sells as $sell) @if ($invoice->status == 'pos') @if ($items->item_name === $sell->part_number) @if ($items->warehouse_id == $sell->warehouse) @if (!$invoice->customer_name) @else @endif @endif @endif @endif @endforeach @php $no++; @endphp @endforeach
Item Name POS No. Invoice Category Customer Name Quantity Date
{{ $sell->part_number }} {{ $invoice->invoice_no }} {{ $invoice->invoice_no }} {{ $invoice->invoice_category }} {{ $invoice->customer_name }} {{ $sell->product_qty }} {{ $invoice->invoice_date ? \Carbon\Carbon::parse($invoice->invoice_date)->format('d/m/Y') : '' }}