@extends('layouts.app') @section('title', 'POS Terminal') @push('styles') @endpush @section('content')
@if(!$session)
⚠️ No open POS session. Open a session →
@else
✓ Session open · {{ $session->posProfile->name }} · Started {{ $session->opened_at->format('h:i A') }}
@csrf @method('PATCH')
@endif
@foreach($items as $item)
{{ $item->code }}
{{ $item->name }}
৳{{ number_format($item->standard_rate, 2) }}
@if($item->tax_rate > 0){{ $item->tax_rate }}% VAT@endif
@endforeach
🛒 Cart (0 items)
🛍️
Tap an item to add it to the cart
Subtotal৳0.00
Tax৳0.00
Total৳0.00
Payment Method
Change৳0.00
@push('scripts') @endpush @endsection