@extends('layouts.app', ['title' => 'Admin Reports | Print Cards']) @section('content')

Reports

Operational and revenue analytics for the card-printing platform.

Back to Dashboard
Orders
{{ $summary['orders'] }}
Customers
{{ $summary['customers'] }}
Paid Revenue
Rs {{ number_format($summary['paid_revenue'], 2) }}
Avg Order Value
Rs {{ number_format($summary['avg_order_value'], 2) }}

Order Status Breakdown

@foreach($statusCounts as $status => $count)
{{ ucfirst($status) }} {{ $count }}
@endforeach

Payment Status Breakdown

@foreach($paymentCounts as $status => $count)
{{ ucfirst($status) }} {{ $count }}
@endforeach

Recent Notifications

@foreach($recentNotifications as $notification) @endforeach
Channel Recipient Subject Sent At
{{ $notification->channel }} {{ $notification->recipient }} {{ $notification->subject }} {{ $notification->sent_at?->format('d M Y h:i A') }}
@endsection