{{ $client->email }} | {{ $client->phone }}
Assigned designer: {{ $client->assignedDesigner->name ?? 'Not assigned' }}
{{ $client->notes }}
{{ $requests->count() }} orders
Monthly plan is hidden for this client. Admin can still assign tasks and manage payments manually.
@else{{ $subscription->plan->name ?? 'No plan' }}
{{ optional($subscription?->starts_at)->format('Y-m-d') }} - {{ optional($subscription?->ends_at)->format('Y-m-d') }}
Total monthly work: {{ $subscription->plan->work_limit ?? 0 }} | Completed: {{ $client->clientTasks->whereIn('status',['approved','completed','delivered'])->count() }} | Remaining: {{ $client->clientTasks->whereNotIn('status',['approved','completed','delivered'])->count() }}
@endifCreate a new active subscription for this client. The previous active plan is moved to inactive automatically.
Plan records for this client.
| Plan | Start | End | Usage | Status |
|---|---|---|---|---|
| {{ $item->plan->name ?? '-' }} | {{ $item->starts_at?->format('Y-m-d') ?? '-' }} | {{ $item->ends_at?->format('Y-m-d') ?? '-' }} | {{ $item->usage_count }} | {{ str($item->status)->headline() }} |
| No subscription history. | ||||
| {{ $item->request_type }} | {{ $item->title }} | {{ $item->status }} |
| No requests. |
| {{ $item->plan->name ?? '-' }} | {{ number_format($item->amount) }} | {{ $item->status }} |
| No payments. |