@extends('theme::layouts.app') @section('content')

{{ content('hero','hero_small_title') }}

{{ content('hero','hero_main_title') }}

{{ content('hero','hero_des') }}

{{ content('hero','hero_button') }}
@php $basic_info=LpOption('system_basic_info'); @endphp @if(!empty($basic_info->gallary_input)) @php $gallery=explode(',', $basic_info->gallary_input); @endphp
@endif
@if(Amcoders\Plugin\Plugin::is_active('services'))

{{ content('service','service_title') }}

{{ content('service','service_des') }}

@php $services=array( 'type'=>4, 'with'=>'meta', 'limit'=>6 ); @endphp @foreach(LpPosts($services) as $service)

{{ $service->title }}

{{ Str::limit($service->meta->excerpt, 200) }}

@endforeach
@endif

{{ content('counter','counter_first_number','counter_first') }}

{{ content('counter','counter_first_title','counter_first') }}

{{ content('counter','counter_second_number','counter_second') }}

{{ content('counter','counter_second_title','counter_second') }}

{{ content('counter','counter_third_number','counter_third') }}

{{ content('counter','counter_third_title','counter_third') }}

{{ content('counter','counter_four_number','counter_four') }}

{{ content('counter','counter_four_title','counter_four') }}
@if(Amcoders\Plugin\Plugin::is_active('Team'))

{{ content('team','team_title') }}

{{ content('team','team_des') }}

@endif @if(Amcoders\Plugin\Plugin::is_active('ecommerce'))

{{ content('pricing','pricing_title') }}

{{ content('pricing','pricing_des') }}

@php $ecom_settings=LpOption('ecommerce'); @endphp @foreach($pricings as $pricing)

{{ $pricing->title }}

{{ $pricing->productMeta->s_price }}

@php $main_data = json_decode($pricing->meta->excerpt); @endphp {{ $main_data->duration }}
@if(empty($main_data->link)) @php $p_link=route('product.cart.pricingstore',$pricing->id); @endphp @else @php $p_link=$main_data->link; @endphp @endif {{ __('Order Now') }}
@endforeach
@endif @if(Amcoders\Plugin\Plugin::is_active('Testimonials'))
@endif

{{ content('blog','blog_title') }}

{{ content('blog','blog_des') }}

@php $blogs=array( 'type'=>0, 'with'=>'meta', 'limit'=>3, ); @endphp @foreach(LpPosts($blogs) as $key=>$row)
{{ $row->created_at->isoFormat('LL') }}

{{ $row->meta->excerpt }}

@endforeach
@endsection