@extends('layouts.'.env('THEME')) @section('moreStyle') @include('staff.schedule.style') @endsection @section('content')
@foreach($task_count as $key => $tc)
{{ $key }}
{{ $tc }}
@endforeach
@foreach($lead_tasks as $lt)
@if(!is_null($lt['lead']->daysSinceEmailed()) && $lt['lead']->daysSinceEmailed() < 5)
Emailed from system {{ $lt['lead']->daysSinceEmailed() }} days ago. be mindful not to send the customer too many emails in a short period of time. Consider coming back to this one later or check if they have replied to the last email.
@endif @foreach($lt['tasks'] as $task)
{!! $task_descriptions[$task['type']] !!} Help to resolve?
@endforeach
@endforeach
@foreach($info_modals as $im) @endforeach @endsection @section('script') @endsection