@extends('layouts.app') @section('content')
CREATOR DASHBOARD

Welcome, {{$u->name}}

Rating profile
Wallet balance₦{{number_format($u->wallet_balance,2)}}
Connected accounts{{$accounts->count()}}
Open tasks{{$tasks->where('status','assigned')->count()}}

Recent tasks

View all
@forelse($tasks as $t)
{{$t->title}}{{$t->platform}}
₦{{number_format($t->earnings+$t->bonus,2)}}
@empty

No tasks yet. Connect and verify your social accounts to become eligible.

@endforelse
@endsection