@extends('layouts.app') @section('title', 'Quick Bill') @section('content')

Quick Bill

Back
@if(session('error'))
{{ session('error') }}
@endif
@csrf
Type to see product suggestions, then click to add.
Product Qty Price Total
Search and click a product to add.
Subtotal0.00

Total0.00
Cancel
@php $productsList = $products->map(function ($p) { $barcode = trim((string) ($p->barcode ?? '')); return [ 'id' => $p->id, 'name' => $p->name, 'price' => (float) $p->selling_price, 'stock' => $p->quantity, 'barcode' => $barcode, 'search' => strtolower($p->name . ' ' . $barcode), ]; }); @endphp @push('scripts') @endpush @endsection