@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
| Ref |
Router |
Plan |
Phone |
Amount |
Date |
@forelse($recentOrders as $o)
| {{ $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') }} |
@empty
| No sales yet. |
@endforelse
@endsection