@extends('layouts.dashboard') @section('content')

Sales Lead Details

General Notes

@forelse ($lead->notes as $note)
{{ $note->note_type }} - {{ $note->title }} {{ $note->created_at->diffForHumans() }}

{{ $note->description }}

@if($note->attachment) View Attachment @endif
Added by: {{ $note->user->name ?? 'N/A' }}
@empty

No notes added yet.

@endforelse
@endsection