@extends('master.app') @section('title', 'Retail Invoices') @section('body')
{{-- HERO --}}

Retail Invoices

Unregistered customer invoices • filter, print, report
{{-- FILTER (SERVER SIDE) --}}
Reset
{{-- TABLE --}}
Invoices List
Actions are direct (no dropdown needed)
@foreach ($bills as $row) {{-- DIRECT ACTIONS (Always clickable) --}} @endforeach @if ($bills->count() == 0) @endif
Invoice Customer Phone Total Date Actions
#{{ $row->invoice_number }}
{{ $row->customer_name }}
{{ $row->title }}
{{ $row->customer_phone }} {{ number_format($row->grand_total ?? 0, 2) }} {{ $row->invoice_date }} {{-- --}}
No invoices found
Try changing filters or add a new invoice.
{{-- keep if you want --}} {{-- @include('sale.retail_bills.filter-modal') --}} @endsection @section('pageCSS') @endsection @section('pageJs') @endsection