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

Orders

All payment orders from web, freelancers and ATM (future).
New Checkout
@forelse($orders as $o) @empty @endforelse
# Ref Router Plan Phone Amount Gateway Status Created
{{ $o->id }} {{ $o->reference }} {{ $o->router->name ?? '—' }} {{ $o->plan->name ?? '—' }} {{ $o->phone }} {{ number_format($o->amount) }} {{ $o->currency }} {{ strtoupper($o->gateway) }} {{ ucfirst($o->status) }} {{ $o->created_at?->format('Y-m-d H:i') }}
No orders yet.
{{ $orders->withQueryString()->links() }}
@endsection