Leave Title empty to remove a card. Extra empty rows can be filled to add cards.
@php
$cards = $s['cards'] ?? [];
while (count($cards) < count($s['cards'] ?? []) + 2) {
$cards[] = ['icon' => 'fas fa-circle', 'title' => '', 'text' => ''];
}
if (count($cards) < 10) {
while (count($cards) < 10) {
$cards[] = ['icon' => 'fas fa-circle', 'title' => '', 'text' => ''];
}
}
@endphp
@foreach($cards as $i => $card)
@endforeach
@php $cta = $s['cta'] ?? []; @endphp
@include('backend.pages.partials.seo-fields', ['page' => $page])