@extends('layouts.admin') @section('page_kicker', 'Finance') @section('page_title', 'Payments & revenue') @section('content')

Revenue per hospital

Aggregated by facility.

Revenue per doctor (top)

Leading earners across the network.

Transactions

Ledger view when the payments table is present.

@if($transactions instanceof \Illuminate\Pagination\AbstractPaginator)
@foreach($transactions as $tx) @endforeach
ID Provider Amount Status Reference
{{ $tx->id }} {{ $tx->provider }} {{ $tx->currency }} {{ $tx->amount }} {{ $tx->status }} {{ $tx->external_reference }}
{{ $transactions->links() }}
@else

No payment transaction table available yet.

@endif
@endsection