@foreach ($steps as $step) @endforeach @php $chunks = collect($steps)->chunk($in_a_row_max); @endphp
@foreach ($chunks as $chunk)
@php $step_count = $chunk->count(); $custom_width = 100 / $step_count; @endphp @foreach ($chunk as $step)

{{ $step['name'] ?? '' }}

@if ($step['sl'] <= $current_step) @else @endif

@endforeach
@endforeach