@foreach ($covenants as $covenant)
@includeWhen(
!empty($covenant->link),
'web.components.pages.home.covenants.image_link'
)
@includeWhen(
empty($covenant->link),
'web.components.pages.home.covenants.image',
[
'media' => [
'path' => $covenant->logo->path,
'alt' => "Imagem ilustrativa do convĂȘnio: {$covenant->name}",
'count' => $covenant->logo_count,
'class' => 'covenants__image',
],
]
)
@endforeach