@extends('layouts.app') @section('content') {{-- ── Hardware catalogue ───────────────────────────────────────────────── --}}

Every device you need. All tested and configured together.

@foreach(config('phylopos.hardware') as $hw)
@include('components.icons.' . $hw['icon'])

{{ $hw['title'] }}

{{ $hw['description'] }}

@endforeach
{{-- ── Hardware bundles ─────────────────────────────────────────────────── --}}

Pick your bundle. Everything arrives connected.

We configure hardware before shipping — so you plug in and start billing, not troubleshoot driver issues.

@foreach([ [ 'title' => 'Single Store Starter', 'subtitle' => 'Café, QSR, or single retail store', 'color' => 'teal', 'items' => [ '1× Billing terminal (touch screen)', '1× Thermal receipt printer', '1× Cash drawer', '1× UPI / card payment terminal', 'Optional: Barcode scanner', ], 'note' => 'Best for: single restaurants, cafés, small retail stores', ], [ 'title' => 'Restaurant Floor Setup', 'subtitle' => 'Dine-in restaurant with kitchen', 'color' => 'emerald', 'items' => [ '1× Billing terminal (counter)', '2–4× Captain handheld devices', '1–2× KDS screens (kitchen stations)', '1× KOT printer (kitchen)', '1× Receipt printer (counter)', '1× Payment terminal', ], 'note' => 'Best for: sit-down restaurants, cafés with table service', ], [ 'title' => 'Multi-Outlet Chain Setup', 'subtitle' => 'Per-outlet configuration', 'color' => 'amber', 'items' => [ '2–4× Billing terminals per outlet', 'Captain handhelds per outlet', 'KDS at kitchen and bar stations', 'KOT and receipt printers', 'Payment terminals at all counters', 'Centralised software licence across all outlets', ], 'note' => 'Best for: restaurant chains, retail chains, cloud kitchen groups', ], [ 'title' => 'Retail Counter Setup', 'subtitle' => 'Retail store — single or chain', 'color' => 'graphite', 'items' => [ '1–2× Billing terminals with customer display', '1× Barcode scanner (wired or wireless)', '1× Receipt or label printer', '1× Cash drawer', '1× Card / UPI payment terminal', 'Optional: Weighing scale integration', ], 'note' => 'Best for: grocery, general retail, pharmacy, boutique', ], ] as $bundle) @php $borderMap = ['teal' => 'border-teal-200', 'emerald' => 'border-emerald-200', 'amber' => 'border-amber-200', 'graphite' => 'border-graphite-200']; $badgeMap = ['teal' => 'badge-teal', 'emerald' => 'badge-emerald', 'amber' => 'badge-amber', 'graphite' => 'badge bg-graphite-100 text-graphite-600']; @endphp

{{ $bundle['title'] }}

{{ $bundle['subtitle'] }}

Bundle
    @foreach($bundle['items'] as $item)
  • {{ $item }}
  • @endforeach
{{ $bundle['note'] }}
@endforeach

Need a custom configuration? We scope and quote for your specific layout and terminal count.

Get a Hardware Quote
{{-- ── Compatibility ────────────────────────────────────────────────────── --}}

Works with your existing hardware too.

If you already have billing terminals, printers, or scanners from leading brands, PhyloPOS is likely compatible. We test before you deploy.

@foreach(['Windows POS terminals', 'Android terminals', 'ESC/POS printers', 'USB barcode scanners', 'Wireless scanners', 'Epson / Star printers', 'Pine Labs terminals', 'UPI QR displays'] as $item)

{{ $item }}

@endforeach
@endsection