@extends('layouts.frontend.app') @section('slider') @include('layouts.frontend.partials.slider') @endsection @section('content') @if(count($sections) > 0)

{{ __('Our Valuable Features') }}

{{ __('features_des') }}

@foreach ($sections as $value) @php $jsonSection = json_decode($value->termMeta->value ) @endphp

{{ $value->title }}

{{ $jsonSection->des }}

@endforeach
@endif @if(!empty($quickStart))
@php $jsonQuick = json_decode($quickStart->quickStart->value ?? ''); @endphp

{{ $quickStart->title }}

{{ $jsonQuick->des ?? null }}

@endif

{{ $getawaySection->first_title ?? '' }}

{{ $getawaySection->first_des ?? '' }}

{{ $getawaySection->second_title ?? '' }}

{{ $getawaySection->second_des ?? '' }}

@if(count($plans) > 0)

{{ __('Pricing Tables') }}

{{ __('pricing_des') }}

@foreach($plans as $plan)
@endforeach
@endif @if(($blogs->count() >0))

{{ __('Latest News') }}

{{ __('news_des') }}

@foreach($blogs as $blog)
{{ $blog->created_at->isoFormat('LL') }} {{ __('By') }} {{ $blog->user->name }}

{{ Str::limit($blog->excerpt->value,150) }}

@endforeach
@endif @endsection