@extends('layouts.app') @section('content') {{-- ── Feature breakdown ────────────────────────────────────────────────── --}}

Every billing scenario. One POS.

Whether you are billing table orders in a restaurant, scanning barcodes in a retail store, or processing delivery orders from Swiggy — the PhyloPOS billing engine handles it without mode-switching.

@foreach([ ['Dine-in table billing', 'Bill against a specific table with cover count, modifiers, and service charge.'], ['Takeaway and delivery billing', 'Separate order types with different workflows and receipt formats.'], ['Barcode scan-to-bill', 'Scan product barcodes for instant item addition — retail, café, or bakery counter.'], ['Split bill by item or amount', 'Split a table bill across multiple customers by item selection or arbitrary amount.'], ['Multiple payment modes per bill', 'Collect part UPI, part cash, part card on a single bill. All recorded accurately.'], ['Bill hold and recall', 'Hold an incomplete bill, serve another table, and recall with no data loss.'], ['Bill modification controls', 'Modify quantities, remove items, or apply discounts with the right permissions.'], ['Digital or printed receipts', 'Print to thermal printer, send via SMS, or share as PDF — configurable per outlet.'], ['Day-close and cashier settlement', 'Cashier declares expected cash; system shows expected vs. actual settlement by mode.'], ['Multi-terminal sync', 'All billing terminals at an outlet stay in sync. No duplicate bills, no data gaps.'], ] as [$title, $desc])

{{ $title }}

{{ $desc }}

@endforeach
@include('components.screen-mockup', ['label' => 'POS — Table Billing', 'type' => 'pos']) {{-- Operational benefits --}}

Operational benefits

@foreach([ ['30% faster billing speed at peak hours vs. traditional POS'], ['Zero manual reconciliation — payment modes auto-recorded per bill'], ['No staff training bottleneck — new cashier trained in under an hour'], ['Full day-close settlement in 2 minutes per cashier'], ] as [$benefit])
{{ $benefit }}
@endforeach
{{-- ── Who it's for ─────────────────────────────────────────────────────── --}}

POS & Billing works across every business type.

@foreach(config('phylopos.industries') as $industry)
@include('components.icons.' . $industry['icon'])
{{ $industry['title'] }}
@endforeach
@endsection