@extends('front.layouts.master') @section('seo_title', $global_other_page_items->page_about_seo_title) @section('seo_meta_description', $global_other_page_items->page_about_seo_meta_description) @section('content')

{{ $global_other_page_items->page_about_title }}

@if($global_other_page_items->page_about_welcome_status == 'Show')
{{ $welcome_one_items->subheading }}

{{ $welcome_one_items->heading }}

{!! str_replace(["

", "

"], ["", ""], clean(nl2br($welcome_one_items->text))) !!}
@foreach($welcome_one_item_elements as $item)
{{ $item->heading }}
{!! str_replace(["

", "

"], ["", ""], clean(nl2br($item->text))) !!}
@endforeach
{{ $welcome_one_items->person_name }}
{{ $welcome_one_items->person_designation }}
{{ $welcome_one_items->button_text }}
{{ $welcome_one_items->experience_year }}
{{ __('Work Experience') }}
@endif @if($global_other_page_items->page_about_service_status == 'Show')
{{ $global_other_page_items->page_about_service_subheading }}

{!! str_replace(["

", "

"], ["", ""], clean(nl2br($global_other_page_items->page_about_service_heading))) !!}

{!! str_replace(["

", "

"], ["", ""], clean(nl2br($global_other_page_items->page_about_service_text))) !!}
@foreach($services->take($global_other_page_items->page_about_service_how_many) as $service)
{{ $service->name }}
{{ $service->name }}
{{ $service->name }}
{{ $service->short_description }}
@endforeach
@endif @if($global_other_page_items->page_about_team_members_status == 'Show')
{{ $global_other_page_items->page_about_team_members_subheading }}

{!! str_replace(["

", "

"], ["", ""], clean(nl2br($global_other_page_items->page_about_team_members_heading))) !!}

@foreach($team_members->take($global_other_page_items->page_about_team_members_how_many) as $item)

{{ $item->name }}

{{ $item->designation }}
@endforeach
@endif @endsection