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

POS

@if (session('success')) @endif @if (session('delete')) @endif Daily Sales

POS List

@php $no = '1'; @endphp @if (Auth::user()->is_admin == '1' || Auth::user()->type == 'Admin') @foreach ($invoices as $invoice) @php $no++; @endphp @endforeach @else @foreach ($invoices as $invoice) {{-- @foreach ($invoice->sells as $sell) @if ($sell->warehouse == Auth::user()->level) --}} @php $no++; @endphp {{-- @endif @endforeach --}} @endforeach @endif
No. POS No. Customer Name Total Payment Status Date Sale By Action
{{ $no }} {{ $invoice->invoice_no }} {{ $invoice->customer_name ?? ' N/A' }} {{ number_format($invoice->total) }} Paid {{ $invoice->invoice_date }} {{ $invoice->sale_by }} @if ($invoice->status == 'invoice') @else @endif
{{ $no }} {{ $invoice->invoice_no }} {{ $invoice->customer_name ?? ' N/A' }} {{ $invoice->total }} Paid {{ $invoice->invoice_date }} {{ $invoice->sale_by }} @if ($invoice->status == 'invoice') @else @endif
{{-- --}}