@extends('user.layout.default') @section('styles') @endsection @section('content')

Today's Productivity

New Contacts
{{$data->contacts[0]->percentage}}
70% Complete
{{$data->contacts[0]->total_count}} New contacts
Follow Ups
{{$data->followups[0]->percentage}}
75% Complete
{{$data->followups[0]->total_count}} follow ups
Scheduled Meeting
{{$data->meetings[0]->percentage}}
20% Complete
{{$data->meetings[0]->total_count}} scheduled meetings
Reconnects
10%
10% Complete
10 reconnects

Todays Workflow

Selecting the contact and create productive task date

@if (isset($contact_list) && !empty($contact_list)) @foreach ($contact_list as $data)

{{$data->firstname}} {{$data->lastname}}

Level 3
{{$data->contact_type}}
@endforeach @else

Oops! It looks like there are no Contact records at the moment.

@endif
@if(isset($followup_list) && !empty($followup_list)) @foreach ($followup_list as $data)

{{$data->firstname}} {{$data->lastname}}

Follow Up On:

Level 3

09/11/22

{{$data->contact_type}}
@endforeach @else

Oops! It looks like there are no follow-up records at the moment.

@endif
@if (isset($meeting_list) && !empty($meeting_list)) @foreach ($meeting_list as $data)

{{$data->firstname}} {{$data->lastname}}

date {{ \Carbon\Carbon::parse($data->date)->format('d/m/Y') }} at {{ \Carbon\Carbon::parse($data->time)->format('h:i A') }}

Level 3
{{$data->contact_type}}
@endforeach @else

Oops! It looks like there are no meetings at the moment.

@endif
@if (isset($reconnect_list) && !empty($reconnect_list))

Mark Edwards

Level 3

09/11/22

Client
@else

Oops! It looks like there are no reconnects at the moment.

@endif
@endsection @section('script') @endsection