@extends('web.layouts.container') @section('content')

{{$page->title}}

{!! $page->description !!}

@if(count($services)) @foreach($services as $service) @if($loop->odd)

{{$service->name}}

{!! wordLimit($service->description, 28) !!}

{{__('main.read_more')}}
{{$loop->iteration < 10 ? '0'.$loop->iteration : $loop->iteration}}
@endif @if($loop->even)

{{$service->name}}

{!! wordLimit($service->description, 28) !!}

{{__('main.read_more')}}
{{$loop->iteration < 10 ? '0'.$loop->iteration : $loop->iteration}}
@endif @endforeach @endif
@endsection @section('inner_js') @endsection