@php
$defaultUseCaseLinks = [
['link' => '#', 'title' => 'Collect Feedback'],
['link' => '#', 'title' => 'Product Launches'],
['link' => '#', 'title' => 'Promotions'],
['link' => '#', 'title' => 'Limited Offers'],
['link' => '#', 'title' => 'Reminders'],
['link' => '#', 'title' => 'Events'],
['link' => '#', 'title' => 'Bulk Messages'],
];
$useCaseLinks = json_decode(setting('footer_use_cases_links', ''), true);
if (!is_array($useCaseLinks) || empty($useCaseLinks)) {
$useCaseLinks = $defaultUseCaseLinks;
}
@endphp
@foreach ($useCaseLinks as $index => $link)
@endforeach