Management information

Operations & compliance reports

Tenant-scoped service performance, species mix, VAT and pharmacy controls.

Export CSV
@foreach([['Bookings',$metrics['bookings']],['Paid revenue','AED '.number_format($metrics['revenue'],2)],['VAT booked','AED '.number_format($metrics['vat'],2)],['Health escalations',$metrics['health_flags']],['Room capacity',$metrics['room_capacity']],['Expiring batches',$metrics['expiring_batches']],['Controlled movements',$metrics['controlled_entries']]] as $metric)

{{ $metric[0] }}

{{ $metric[1] }}

@endforeach

Service performance

@forelse($byService as $row)
{{ config("pawstreet.service_lines.{$row->service_line}.label", str($row->service_line)->headline()) }}AED {{ number_format($row->revenue,2) }}

{{ $row->bookings }} bookings

@empty

No activity in this period.

@endforelse

Species mix

@foreach($species as $row)@php $pct=$metrics['bookings'] ? round($row->total/$metrics['bookings']*100) : 0; @endphp
{{ $row->species }}{{ $row->total }} · {{ $pct }}%
@endforeach

Workflow status

@foreach($byStatus as $row)

{{ str($row->status)->headline() }}

{{ $row->total }}

@endforeach