@extends('layouts.app') @section('title','Order '.$order->reference.' — BlueBando v3') @section('content')

Order {{ $order->reference }}

Detailed information for this payment.

Basic

Status: {{ ucfirst($order->status) }}
Gateway: {{ strtoupper($order->gateway) }}
Channel: {{ $order->channel }}
Amount: {{ number_format($order->amount) }} {{ $order->currency }}
Phone: {{ $order->phone }}
Created: {{ $order->created_at }}
Paid at: {{ $order->paid_at ?? '—' }}

Context

Router: {{ $order->router->name ?? '—' }}
Plan: {{ $order->plan->name ?? '—' }}
User (staff): {{ $order->user->name ?? '—' }}

Raw Meta

{{ json_encode($order->meta, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
      
@endsection