@php
$services = [
['slug' => 'web-design', 'icon' => 'fa-layer-group', 'title' => 'Website Design', 'desc' => 'Website designing is one of the main factors to success in this internet dominated world.', 'color' => 'teal'],
['slug' => 'ecommerce', 'icon' => 'fa-store', 'title' => 'E Commerce Solutions', 'desc' => 'Design and develop dynamic E-commerce websites to upgrade your business.', 'color' => 'blue'],
['slug' => 'seo', 'icon' => 'fa-chart-line', 'title' => 'Search Engine Optimization', 'desc' => 'SEO is integral when your brand\'s website goes live on the internet.', 'color' => 'blue'],
['slug' => 'mobile', 'icon' => 'fa-mobile-screen-button', 'title' => 'Mobile Application Development', 'desc' => 'Android apps displayed properly across shapes and sizes for success.', 'color' => 'cyan'],
['slug' => 'api', 'icon' => 'fa-plug', 'title' => 'API Integration', 'desc' => 'E-commerce, cab booking, school education booking API integration.', 'color' => 'blue'],
];
@endphp
@foreach($services as $service)
{{ $service['title'] }}
{{ $service['desc'] }}
Explore
@endforeach