@extends('layouts.restaurant') @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '?'); @endphp @section('title', 'Add Printer') @section('styles') @endsection @section('content')
Printer Configuration
@csrf
Network Printer
WiFi / Ethernet
Bluetooth Printer
Wireless
USB Printer
Direct Connection
Give your printer a recognizable name
Example: 192.168.1.100
Default thermal printer port is 9100

Default printer will be used for automatic KOT and invoice prints

Inactive printers won't receive print jobs

Before saving: Make sure your printer is powered ON and properly connected. You can test the connection after saving.
Auto Discovery
Click "Scan Now" to find printers on your network
Test Print Sample
================================
    YOUR STORE NAME
        123 Main Street
        City, State 12345
        Phone: +91 XXXXX XXXXX
================================

      KITCHEN ORDER TICKET
--------------------------------
Order #: ORD-12345
Date: {{ date('Y-m-d H:i:s') }}
Customer: John Doe
--------------------------------
ITEMS:
--------------------------------
Butter Chicken            1 x {{ $currencySymbol }}350
Garlic Naan               2 x {{ $currencySymbol }}60
Veg Biryani               1 x {{ $currencySymbol }}250
--------------------------------
Subtotal:               {{ $currencySymbol }}720
Tax (5%):               {{ $currencySymbol }}36
Delivery Fee:            {{ $currencySymbol }}40
--------------------------------
TOTAL:                  {{ $currencySymbol }}796
--------------------------------
Thank you for ordering!
================================
Sample KOT Format: This is how your kitchen order tickets will look.
@endsection @section('scripts') @endsection