@if ($subtitle = $shortcode->subtitle)
{!! BaseHelper::clean($subtitle) !!}
@endif
@if ($title = $shortcode->title)
{!! BaseHelper::clean($title) !!}
@endif
@foreach($tools as $tool)
@php
$toolName = Arr::get($tool, 'name');
$toolLogo = Arr::get($tool, 'logo');
$actionLabel = Arr::get($tool, 'action_label');
$actionUrl = Arr::get($tool, 'action_url');
$toolDescription = Arr::get($tool, 'description');
@endphp
@continue(! $toolName)
@if ($toolLogo)
{{ RvMedia::image($toolLogo, $toolName, attributes: ['class' => 'filter-invert']) }}
@endif
@if($toolDescription)
{!! BaseHelper::clean($toolDescription) !!}
@endif
@if ($actionLabel && $actionUrl)
{!! BaseHelper::clean($actionLabel) !!}
@endif
@endforeach