@extends('layouts.app') @section('title', 'Billing & POS') @section('content')

Counter operations

Billing & POS

Create invoices from locked application fees and collect auditable split payments.

@if(!$openSession)

No open cash session

Open your drawer before accepting cash. Card and bank collections remain available.

Open drawer
@else

Cash drawer open

Opened {{ $openSession->opening_time->diffForHumans() }} with AED {{ number_format((float) $openSession->opening_cash, 2) }}.

LIVE SHIFT
@endif
@csrf
@forelse($applications as $application) @empty @endforelse
Application Customer / Service Government Revenue + VAT Total

{{ $application->application_number }}

{{ ucfirst($application->status) }}

{{ $application->customer?->full_name_en }}

{{ $application->service?->name_en }}

AED {{ number_format((float) $application->gov_fee_total, 2) }} AED {{ number_format((float) ($application->typing_fee_total + $application->service_charge_total + $application->vat_total), 2) }} AED {{ number_format((float) $application->total_price, 2) }}
No unbilled applications match this search.
@if($applications->isNotEmpty())
@endif
@endsection