@extends('layouts.freelancer') @section('title','My Sales — BlueBando v3') @section('content')

My Sales

All orders where you are the freelancer.
@forelse($orders as $o) @empty @endforelse
Ref Status Router Plan Phone Amount Date
{{ $o->reference }} {{ ucfirst($o->status) }} {{ $o->router->name ?? '—' }} {{ $o->plan->name ?? '—' }} {{ $o->phone }} {{ number_format($o->amount) }} {{ $o->currency }} {{ $o->created_at->format('Y-m-d H:i') }}
No orders found.
{{ $orders->withQueryString()->links() }}
@endsection