@extends('layouts.app') @section('title', 'Payment Transfers - Pharmacy Management') @section('content')
Transfer funds between payment accounts
Total Transferred
${{ number_format($totalAmount, 2) }}
Pending
{{ $transfers->where('status', 'pending')->count() }}
Approved
{{ $transfers->where('status', 'approved')->count() }}
Rejected
{{ $transfers->where('status', 'rejected')->count() }}