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