@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Good day, {{ $user->name }}

Income dashboard

Track your wallets, tasks, referrals, and VIP power in one premium view.

Main wallet ৳ {{ number_format($wallets->get('main')->balance ?? 0, 2) }}
Referral ৳ {{ number_format($wallets->get('referral')->balance ?? 0, 2) }}
Active tasks {{ $jobs->count() }}
Team referrals {{ $referrals }}
VIP status Free account

Available tasks

Browse all
@forelse($jobs as $job)

{{ $job->title }}

{{ Str::limit($job->description, 90) }}

৳ {{ number_format($job->reward, 2) }} Start
@empty

No eligible tasks right now. Check back later.

@endforelse
@endsection