@extends('layouts.admin') @section('title', 'Select Counter') @section('content')

Select POS Counter

Choose a counter to start the POS session. Use "Retrieve Kiosk" in POS to collect payment for kiosk orders.

@foreach($counters as $counter)
{{ $counter->name }}
{{ $counter->branch->name }}
@endforeach
@if($counters->isEmpty())

No POS counters available. Contact your manager to assign one.

@endif @endsection