{{-- Skeleton loader: shown instantly while Livewire component hydrates --}}
{{-- Skeleton placeholder --}}
{{-- Page header skeleton --}}
{{-- Pipeline summary skeleton --}}
@for ($i = 0; $i < 5; $i++)
@endfor
{{-- Kanban board skeleton: columns --}}
@php $columnCards = [3, 2, 4, 2, 1]; @endphp @foreach ($columnCards as $cardCount)
{{-- Column header --}}
{{-- Column body --}}
@for ($j = 0; $j < $cardCount; $j++)
@endfor
@endforeach
{{-- Actual Livewire component --}}