@extends('layouts.admin') @section('title', 'CRM') @section('breadcrumb') Dashboard CRM @endsection @section('content') {{-- Kanban Board --}}
@foreach(['new' => ['New Leads', 'sky'], 'contacted' => ['Contacted', 'indigo'], 'qualified' => ['Qualified', 'amber'], 'converted' => ['Converted', 'emerald'], 'lost' => ['Lost', 'rose']] as $status => [$label, $color])
{{-- Column Header --}}
{{ $label }}
{{-- Cards --}}
{{-- Empty column state --}}
@endforeach
{{-- Add Lead Modal --}} @endsection