@extends('layouts.app') @section('title','POS Invoices') @section('content')
@forelse($invoices as $item)@empty@endforelse
Invoice #CustomerDateTotalPaymentStatus
{{ $item->number ?? '—' }}{{ $item->customer_name ?? '—' }}{{ $item->date ?? '—' }}{{ $item->total ?? '—' }}{{ $item->payment_method ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection