@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 55 50 00 00 00', 'link' => 'tel:+225 55 50 00 00 00'],
['icon' => 'envelope', 'color' => 'amber', 'title' => 'Email', 'text' => 'contact@adamservice.dz', 'link' => 'mailto:contact@adamservice.dz'],
['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