{{-- resources/views/admin/purchased-leads/index.blade.php --}} @extends('layouts.contentLayoutMaster') @php // Ensure layout config exists $configData = $configData ?? array_merge(\App\Helpers\Helper::applClasses(), [ 'mainLayoutType' => 'vertical', 'showMenu' => true, 'layoutWidth' => 'full', ]); // Keep statuses in sync with controller $allowedStatuses = ['new', 'in_progress', 'contacted', 'quoted', 'sold', 'dead', 'archived']; // Flags so we can render health safely even if not enabled $healthEnabled = isset($health) && $health instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator; @endphp @section('title', 'Purchased Leads (Admin)') @section('content')
purchased_health_leads table and model to enable storage.
@endunless