@extends('layouts.admin') @section('title', 'Orders') @section('topbar-title', 'Orders') @section('content')

All Orders ({{ $orders->total() }})

@if(request()->hasAny(['search','status']))Clear@endif
@forelse($orders as $order) @empty @endforelse
InvoiceUserProductIPCycleAmountStatusDate
{{ $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')
@csrf
@endif
No orders found
{{ $orders->withQueryString()->links() }}
@endsection