{{ $highlight->{'title_'.$locale} ?? 'Real-Time Security Response' }}
{{ $highlight->{'description_'.$locale}
?? 'Instant alerts, smart detection, and real-time monitoring to keep you protected at all times.' }}
@php
$fallbackFeatures = [
[
'icon' => 'fa fa-shield',
'title' => 'Instant Security Alerts',
'content' => 'Receive real-time notifications and alerts for every important security event.',
],
[
'icon' => 'fa fa-eye',
'title' => 'Live Monitoring',
'content' => 'Monitor your environment 24/7 with high accuracy and smart detection.',
],
[
'icon' => 'fa fa-lock',
'title' => 'Advanced Protection',
'content' => 'Multiple layers of security ensure complete and reliable protection.',
],
];
@endphp
@forelse(optional($highlight)->features ?? [] as $feature)
{{ $feature->{'title_'.app()->getLocale()} ?? 'Smart Security Feature' }}
{{ $feature->{'content_'.app()->getLocale()}
?? 'Advanced technology designed to keep your system secure and responsive.' }}
@empty
@foreach($fallbackFeatures as $item)
{{ $item['title'] }}
{{ $item['content'] }}
@endforeach
@endforelse