@extends('layouts.app') @section('title','Lead Activity') @section('header','Lead Activity') @section('content')

{{ $lead->name }}

Activity timeline

Back to Lead
@forelse($activities as $activity)
{{ ucfirst($activity->type) }} {{ $activity->created_at->format('d M Y H:i') }}

{{ $activity->description }}

@empty

No activity recorded yet.

@endforelse {{ $activities->links() }}
@endsection