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

{{ __('Leads Management') }}

@endsection @section('content')

Leads

@can('create', \App\Models\Lead::class) Add Lead @endcan
@foreach($leads as $lead) @endforeach
Name Email Phone Status Assigned To Next Follow Up Actions
{{ $lead->name }} {{ $lead->email }} {{ $lead->phone }} {{ ucfirst($lead->status) }} {{ $lead->assignedTo ? $lead->assignedTo->name : '-' }} {{ $lead->next_follow_up_date ? \Carbon\Carbon::parse($lead->next_follow_up_date)->format('M d, Y') : '-' }}
@csrf @method('DELETE')
{{ $leads->links() }}
@endsection