@foreach([
['icon' => 'map-marker-alt', 'color' => 'blue', 'title' => 'Adresse', 'text' => "Abidjan, Côte d'ivoire"],
['icon' => 'phone', 'color' => 'green', 'title' => 'Téléphone', 'text' => '+225 07 01 52 54 21', 'link' => 'tel:+2250701525421'],
['icon' => 'envelope', 'color' => 'amber', 'title' => 'Email', 'text' => 'contact@adamservice.com', 'link' => 'mailto:contact@adamservice.com'],
['icon' => 'clock', 'color' => 'purple', 'title' => 'Horaires', 'text' => 'Lundi – Samedi : 9h00 – 18h00'],
] as $info)
{{ $info['title'] }}
@if(isset($info['link']))
{{ $info['text'] }}
@else
{{ $info['text'] }}
@endif
@endforeach