@extends('frontend.layouts.app') @section('title', 'Services - ' . ($settings->company_name ?? 'Company')) @section('content')

Our Services

Comprehensive solutions designed to help your business thrive in the digital world.

@forelse($services as $index => $service)
@include('frontend.partials.icon', ['icon' => $service->icon ?? 'code'])

{{ $service->title }}

{{ $service->description }}

@if($service->features && count($service->features) > 0)
    @foreach($service->features as $feature) @if($feature)
  • {{ $feature }}
  • @endif @endforeach
@endif @if($service->is_featured)
Featured
@endif
@empty

No services available at the moment.

@endforelse

Need a Custom Solution?

Contact us to discuss your specific requirements and how we can help.

Get In Touch
@endsection