@extends('layouts.app') @section('content') {{-- ── Integration categories ───────────────────────────────────────────── --}}
@foreach([ [ 'label' => 'Food Delivery Aggregators', 'title' => 'Aggregator orders land in your POS. Automatically.', 'subtitle' => 'Stop managing a separate tablet for every platform. Zomato and Swiggy orders flow into PhyloPOS via UrbanPiper, route to the kitchen, and update your inventory — without manual re-entry.', 'items' => [ ['Zomato', 'Orders auto-imported into POS', 'puzzle'], ['Swiggy', 'Menu sync and order routing', 'puzzle'], ['UrbanPiper', 'Aggregator middleware', 'puzzle'], ['Direct POS', 'For your own app or website', 'globe'], ], 'bg' => 'bg-surface', ], [ 'label' => 'Payment Integrations', 'title' => 'Payments embedded into the billing flow.', 'subtitle' => 'Connect payment terminals and gateways directly to PhyloPOS. Collections recorded against each bill, cashier settlement automated, and reconciliation reports generated at day-close.', 'items' => [ ['Razorpay', 'POS and online payments', 'credit-card'], ['Pine Labs', 'POS terminals', 'credit-card'], ['PayU', 'Payment gateway', 'credit-card'], ['UPI / BHIM', 'QR and direct UPI', 'credit-card'], ], 'bg' => 'bg-white', ], [ 'label' => 'Accounting & ERP', 'title' => 'Push sales and purchase data to your accounting stack.', 'subtitle' => 'Export daily sales summaries, GST-ready reports, and purchase data to Tally, Zoho Books, or custom ERP via our export layer or API.', 'items' => [ ['Tally', 'Daily sales and purchase export', 'document'], ['Zoho Books', 'Sync via API', 'document'], ['Custom ERP', 'CSV or API export', 'cog'], ['Excel / CSV', 'All reports exportable', 'document'], ], 'bg' => 'bg-surface', ], [ 'label' => 'Hardware & Peripheral Integrations', 'title' => 'Compatible with the hardware your team already uses.', 'subtitle' => 'PhyloPOS is tested with leading billing terminals, printers, scanners, KDS screens, and payment devices. No proprietary lock-in.', 'items' => [ ['Epson / Star Printers', 'Receipt and KOT printing', 'printer'], ['USB / BT Scanners', 'Barcode billing and GRN', 'scan'], ['Android KDS', 'Station display screens', 'tv'], ['Weighing Scales', 'Weight-based billing', 'scale'], ], 'bg' => 'bg-white', ], ] as $category)

{{ $category['title'] }}

{{ $category['subtitle'] }}

@foreach($category['items'] as $item)
@include('components.icons.' . $item[2])
{{ $item[0] }}
{{ $item[1] }}
@endforeach
@endforeach {{-- API section --}}
@include('components.icons.cog')

Custom integrations via API

PhyloPOS exposes a REST API and webhook layer for custom integrations — CRM systems, loyalty platforms, ERP pipelines, or bespoke reporting dashboards. Talk to our team about your integration requirements.

Talk to Our Integration Team
@endsection