@extends('layouts.admin') @section('title', 'Orders') @section('topbar-title', 'Orders') @section('content')
| Invoice | User | Product | IP | Cycle | Amount | Status | Date | |
|---|---|---|---|---|---|---|---|---|
| {{ $order->invoice_number }} |
{{ $order->user->name }}
{{ $order->user->email }}
|
{{ $order->plan->product->name }} | {{ $order->server_ip }} | {{ $order->billing_cycle }} | ${{ number_format($order->amount, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M j, Y') }} | @if($order->status === 'pending') @endif |
| No orders found | ||||||||