{{ __('Goals & Performance') }}

Create New Goal

Monthly Commissions

${{ number_format($monthlyCommissions, 2) }}

Yearly Commissions

${{ number_format($yearlyCommissions, 2) }}

Monthly Referrals

{{ number_format($monthlyReferrals) }}

Yearly Referrals

{{ number_format($yearlyReferrals) }}

Active Goals

@if($activeGoals->isEmpty())

No active goals

Get started by creating a new goal.

@else
@foreach($activeGoals as $goal) @endforeach
@endif
@if($completedGoals->isNotEmpty())

Recently Completed Goals

@foreach($completedGoals as $goal) @endforeach
Type Target Achieved On Description Actions
{{ ucfirst($goal->type) }} {{ $goal->type === 'commissions' ? '$' . number_format($goal->target_value, 2) : number_format($goal->target_value) }} {{ $goal->achieved_at->format('M d, Y') }} {{ Str::limit($goal->description, 50) }} View
@endif