@extends('layouts.app') @section('content') @if(count($whatWeDos)>0) @php $whatwedo_arrays1 = $whatWeDos->take(6)->all(); $whatwedo_arrays2 = $whatWeDos->slice(6)->values()->all(); @endphp
What we do

Empowering Business

We translate business idea in to better software solutions.

@foreach($whatwedo_arrays1 as $whatwedo_arrayval)

{{$whatwedo_arrayval->title}}

@endforeach
@foreach($whatwedo_arrays2 as $whatwedo_arrayval)

{{$whatwedo_arrayval->title}}

@endforeach
empowering
@endif @if(count($whyChooses)>0) @php $whychooses_half = ceil($whyChooses->count() / 2); $whychooses_chunks = $whyChooses->chunk($whychooses_half); $whychooses_arrays1 = $whychooses_chunks->get(0)->all(); $whychooses_arrays2 = $whychooses_chunks->get(1)->all() @endphp
Why Choose Us

Expertise You Can Trust. Support You Can Rely On.

@foreach($whychooses_arrays1 as $whychooses_arrayval)
why_choose_us_icon

{{$whychooses_arrayval->title}}

{{$whychooses_arrayval->desc}}

@endforeach
why_choose_us_cover
@foreach($whychooses_arrays2 as $whychooses_arrayval)
why_choose_us_icon

{{$whychooses_arrayval->title}}

{{$whychooses_arrayval->desc}}

@endforeach
@endif
Our Services

Innovation-Fueled Services That Drive Digital Growth

@foreach($services as $key => $service)
{{$service->title}}

{{$service->title}}

{{$service->short_description}}

@endforeach
@endsection