@php $workshopHow = $workshopHow ?? null; $howSteps = $workshopHow ? $workshopHow->content->where('type', 'step')->sortBy('sort_order')->values() : collect(); @endphp @if($howSteps->count())
@foreach($howSteps as $index => $step)
{{ sprintf('%02d', $index + 1) }}

{{ ___($step, 'title') }}

{{ ___($step, 'description') }}

@endforeach
@endif