@extends('layouts.app') @section('title','Payments Report — BlueBando v3') @section('content')

Payments Report

Malipo yote ya wateja kwa router ulizochagua.

{{-- Filters --}}
@php $currentStatus = $status ?? 'all'; @endphp
{{-- Counters --}}
Jumla ya Malipo
{{ number_format($counters['total'] ?? 0) }}
Success
{{ number_format($counters['success'] ?? 0) }}
Pending
{{ number_format($counters['pending'] ?? 0) }}
Failed
{{ number_format($counters['failed'] ?? 0) }}
{{-- Table --}}
@forelse($orders as $o) @php $st = strtolower($o->status); @endphp @empty @endforelse
Tarehe Router Kifurushi Phone Network Reference Gateway Amount Status
{{ $o->created_at?->format('Y-m-d H:i') }} {{ $o->router->name ?? '-' }} {{ $o->plan->name ?? '-' }} {{ $o->phone }} {{ $o->network ?? $o->operator }} {{ $o->reference }} {{ strtoupper($o->gateway) }} {{ number_format($o->amount) }} {{ $o->currency }} {{ ucfirst($o->status) }}
Hakuna rekodi za kuonyesha.
@if($orders->hasPages()) @endif
@endsection