@extends('layouts.app') @section('title','Leads') @section('page_title','Leads') @section('content') @if(session('success'))
| Company | Contact | Mobile | Priority | Status | Follow-up | Assigned To | Action | ||
|---|---|---|---|---|---|---|---|---|---|
| {{ $lead->company_name }} | {{ $lead->contact_person }} | {{ $lead->mobile }} | {{ $lead->email }} | {{ $lead->priority ?? '-' }} | @if( $lead->next_followup_date && $lead->next_followup_date < now()->toDateString() ) {{ $lead->next_followup_date }} @elseif( $lead->next_followup_date == now()->toDateString() ) {{ $lead->next_followup_date }} @else {{ $lead->next_followup_date ?? '-' }} @endif | {{ $lead->assignedUser->name ?? '-' }} | View Edit Convert | ||
| No leads found. | |||||||||