@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) {{ $name }} @endif
    @foreach($steps as $index => $step)
  1. {{ $index + 1 }}

    {{ $step['name'] }}

    {{ $step['text'] }}
    @if(!empty($step['image'])) {{ $step['name'] }} @endif
  2. @endforeach
{{-- JSON-LD Schema --}} @endif