@extends('layouts.app') @section('title', 'Lead Detail') @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); $canEditLeads = auth()->user()->hasPermissionName('leads.edit'); $canInteract = auth()->user()->hasPermissionName('leads.interact'); $statusColors = [ 'New' => 'primary', 'Contacted' => 'info', 'Qualified' => 'success', 'Proposal Sent' => 'warning', 'Negotiation' => 'secondary', 'Won' => 'success', 'Lost' => 'danger', ]; $stages = \App\Models\Lead::STATUSES; $currentStage = array_search($lead->status, $stages, true); @endphp
{{ $lead->notes }}
{{ $interaction->note }}
No interactions logged yet.
@endforelse