@if(count((array) $result['opportunities_reports']['administrators_today'])>0)
@foreach ($result['opportunities_reports']['administrators_today'] as $atVal)
{{ $atVal->first_name }} {{ $atVal->last_name }} |
{{ $atVal->total_opp }} |
{{ $atVal->Won }} |
{{ $atVal->InProcess }} |
{{ $atVal->Lost }} |
{{ $atVal->total_opp > 0 ? round(($atVal->Won / $atVal->total_opp) * 100) : 0 }} |
@endforeach
@endif