@extends('layouts.user') @section('title', 'My Orders') @section('topbar-title', 'My Orders') @section('content')
@if($orders->isEmpty())

No orders yet. Browse products to get started.

@else
@foreach($orders as $order) @endforeach
InvoiceProductPlanServer IPAmountStatusDate
{{ $order->invoice_number }} {{ $order->plan->product->name }} {{ $order->billing_cycle }} {{ $order->server_ip }} ${{ number_format($order->amount, 2) }} {{ ucfirst($order->status) }} {{ $order->created_at->format('M j, Y') }}
{{ $orders->links() }}
@endif
@endsection