@php $howToPlaySteps = $howToPlay->moreRelatedData ?? null; @endphp
image
{{ $howToPlay->title ?? 'Need to know about' }}

{{ $howToPlay->sub_title ?? 'How To Play' }}

{!! $howToPlay->description ?? '

Follow these 3 easy steps!

' !!}
@if ($howToPlaySteps) @foreach ($howToPlaySteps as $key => $step)
@if (!empty($step->image) && Storage::exists($step->image)) image-icon @else image-icon @endif 0{{ $key + 1 }}

{{ $step->title ?? 'Choose' }}

{{ $step->sub_title ?? 'Register to BMF Competitions & Choose your contest' }}

@endforeach @endif