{{-- My services on this sale --}}
@if($myServices->isNotEmpty())
@foreach($myServices as $svcName)
{{ $svcName }}
@endforeach
@endif
{{-- All services on this sale (for context) --}}
@php $otherServices = $enriched->where('assigned_employee_id', '!=', Auth::id())->pluck('service_name')->unique(); @endphp
@if($otherServices->isNotEmpty())
Also on this sale: {{ $otherServices->implode(', ') }}
@endif
{{-- My commission --}}
@if($myComm > 0)
Your commission: KSh {{ number_format($myComm, 2) }}
@endif
{{-- SMS sent info --}}
@if($sale->is_ready && $sale->sms_sent_at)
SMS sent {{ $sale->sms_sent_at->diffForHumans() }}