@extends('web.layouts.master') @php $header = \App\Models\PageSetup::page('services'); @endphp @if(isset($header)) @section('title', $header->meta_title) @section('top_meta_tags') @if(isset($header->meta_description)) @else @endif @if(isset($header->meta_keywords)) @else @endif @endsection @endif @section('content')

{{ __('navbar.services') }}

@php $section_services = \App\Models\Section::section('services'); @endphp @if(count($services) > 0 && isset($section_services))

{{ $section_services->title }}

{!! $section_services->description !!}
@foreach($services as $service)

{{ $service->title }}

{!! strip_tags($service->short_desc) !!}
@endforeach
@endif @php $section_process = \App\Models\Section::section('process'); @endphp @if(count($processes) > 0 && isset($section_process))

{{ $section_process->title }}

{!! $section_process->description !!}
@endif @endsection