@extends('layouts.app') @section('title','Follow-up calendar') @section('heading','Follow-up calendar') @section('content') @php($previous=$start->copy()->subMonth()->format('Y-m')) @php($next=$start->copy()->addMonth()->format('Y-m'))

FOLLOW-UP PLAN

{{ $start->format('F Y') }}

Scheduled customer conversations grouped by date.

Today
@forelse($invoices as $date=>$items)
{{ \Carbon\Carbon::parse($date)->format('d') }}{{ \Carbon\Carbon::parse($date)->format('D') }}
@empty

No follow-ups this month

Schedule a follow-up from an invoice detail page.

@endforelse
@endsection