@foreach($patient->preventiveCare as $service)

{{ $service->name }}

Due: {{ $service->pivot->due_date->format('m/d/Y') }}

@if($service->pivot->completed_date)

Completed: {{ $service->pivot->completed_date->format('m/d/Y') }}

@endif
@endforeach