@foreach($boardColumns as $key=>$column)
{{ ucwords($column->type) }} ({{ $column->leads->count() }})
@foreach($column->leads as $lead)
{{ ucfirst($lead->client_name) }} @if(!is_null($lead->currency_id)) ({{ $lead->currency->currency_symbol }}{{ $lead->value }}) @endif
{{ ucfirst($lead->company_name) }}
@if (!is_null($lead->agent_id))
user
@endif
@if ($lead->next_follow_up_date != null && $lead->next_follow_up_date != '') {{ \Carbon\Carbon::parse($lead->next_follow_up_date)->format($global->date_format) }} @else @lang('modules.followup.followUpNotFound') @endif
@endforeach
@endforeach