@extends('layouts.freelancer') @section('title','Freelancer Dashboard — BlueBando v3') @section('content')

Dashboard

Hi {{ $freelancer->name }}, here is a quick overview of your performance.
Today Sales
{{ number_format($todaySales) }} TZS
This Month
{{ number_format($monthSales) }} TZS
Total Sales
{{ number_format($totalSales) }} TZS
Estimated Commission ({{ $commissionRate }}%)
{{ number_format($totalCommission) }} TZS
Recent Successful Orders View all
@forelse($recentOrders as $o) @empty @endforelse
Ref Router Plan Phone Amount Date
{{ $o->reference }} {{ $o->router->name ?? '—' }} {{ $o->plan->name ?? '—' }} {{ $o->phone }} {{ number_format($o->amount) }} {{ $o->currency }} {{ $o->created_at->format('Y-m-d H:i') }}
No sales yet.
@endsection