@extends('layouts.app') @section('title', 'Leads') @push('style') @endpush @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); $canCreateLeads = auth()->user()->hasPermissionName('leads.create'); @endphp

Lead Management

Track leads using the CRM theme table layout.
@if($canCreateLeads) Add New Lead @endif
@if(session('success')) @endif
All Leads
# Lead Phone Source Assigned To Status Score Created Action
@endsection @push('script') @endpush