@props([
'name',
'description' => '',
'image' => null,
'totalTime' => null,
'steps' => []
])
@if(count($steps) > 0)
{{-- Visible HowTo Section --}}
{{ $name }}
@if($description)
{{ $description }}
@endif
@if($totalTime)
Waktu yang dibutuhkan:
{{ $totalTime }}
@endif
@if($image)

@endif
@foreach($steps as $index => $step)
-
{{ $index + 1 }}
{{ $step['name'] }}
{{ $step['text'] }}
@if(!empty($step['image']))
![{{ $step['name'] }}]({{ $step['image'] }})
@endif
@endforeach
{{-- JSON-LD Schema --}}
@endif