@extends('layouts.app') @section('title', 'Dashboard') @section('content')
{{ now()->format('l, F j, Y') }}
Available Balance
| Order ID | Service | Link | Quantity | Price | Status | Date | Actions |
|---|---|---|---|---|---|---|---|
| {{ $order->order_id }} | {{ $order->service->name }} | {{ $order->link }} | {{ number_format($order->quantity) }} | {{ number_format($order->price, 2) }} {{ config('app.currency') }} | @php $statusColors = [ 'pending' => 'warning', 'processing' => 'info', 'in_progress' => 'primary', 'completed' => 'success', 'cancelled' => 'danger', 'refunded' => 'secondary', ]; @endphp {{ ucfirst($order->status) }} | {{ $order->created_at->diffForHumans() }} | |
| No orders yet. | |||||||
{{ $transaction->description }}
No transactions yet.
@endforelseJoined {{ $referral->joined_at->diffForHumans() }}
No referrals yet. Share your referral link to earn!