@extends('layouts.user.layout') @section('title') {{ $seo_text->title }} @endsection @section('meta') @endsection @section('user-content')

{{ $menus->where('id',4)->first()->navbar }}

@php $about_section=$sections->where('id',1)->first(); @endphp @if ($about_section->show_homepage==1)
about images
{!! clean($about->about) !!}
{!! clean($about->service) !!}
{!! clean($about->history) !!}
@php $award_section=$sections->where('id',2)->first(); @endphp @if ($award_section->show_homepage==1)
@foreach ($overviews->take($award_section->content_quantity) as $overview)

{{ $overview->qty }}

{{ $overview->name }}

@endforeach
@endif
@endif @php $team_section=$sections->where('id',3)->first(); @endphp @if ($team_section->show_homepage==1)

{{ $team_section->header }}

{{ $team_section->description }}
@foreach ($partners->take($team_section->content_quantity) as $item)
team images

{{ $item->name }}

{{ $item->designation }}

@endforeach
@endif
@endsection