@extends('web.layouts.app') @section('title') {{ __('messages.front_web.home') }} @endsection @section('content')

{{ getSadminSettingValue('hero_title') }}

{{ getSadminSettingValue('hero_description') }}

images
@if ($services->count() > 0)
images
@foreach ($services as $service)
feature-img

{{ $service->title }}

{{ $service->description }}

@endforeach
@endif @if ($partners->count() > 0)

{{ getSadminSettingValue('partner_main_title') }}

{{ getSadminSettingValue('partner_description') }}

@foreach ($partners as $partner)
{{ $partner->name }}
@endforeach
@endif @if ($whyChooseUs->count() > 0)

{{ __('messages.front_web.why_choose') . ' ' . getAppName() }} ?

@if ($whyChooseUs->first()) @php $whyChooseFirst = $whyChooseUs->first(); @endphp
@endif @if ($whyChooseUs->skip(1)->first()) @php $whyChooseSecond = $whyChooseUs->skip(1)->first(); @endphp
@endif @if ($whyChooseUs->skip(2)->first()) @php $whyChooseThird = $whyChooseUs->skip(2)->first(); @endphp
@endif @if ($whyChooseUs->skip(3)->first()) @php $whyChooseFourth = $whyChooseUs->skip(3)->first(); @endphp
@endif
@if ($whyChooseUs->first()) @php $whyChooseFirst = $whyChooseUs->first(); @endphp
{!! $whyChooseFirst->description !!}
images
@endif @if ($whyChooseUs->skip(1)->first()) @php $whyChooseSecond = $whyChooseUs->skip(1)->first(); @endphp
{!! $whyChooseSecond->description !!}
images
@endif @if ($whyChooseUs->skip(2)->first()) @php $whyChooseThird = $whyChooseUs->skip(2)->first(); @endphp
{!! $whyChooseThird->description !!}
images
@endif @if ($whyChooseUs->skip(3)->first()) @php $whyChooseFourth = $whyChooseUs->skip(3)->first(); @endphp
{!! $whyChooseFourth->description !!}
images
@endif
@endif @if ($plans->isNotEmpty())

{{ __("messages.plan.choose_a_plan_that's_right_for_you") }}

@foreach ($plans as $plan)

{{ $plan->name }}

{{ $plan->currency->symbol }} {{ $plan->price }} @if ($plan->frequency == 1) / {{ __('messages.plan.weekly') }} @elseif($plan->frequency == 2) / {{ __('messages.plan.monthly') }} @elseif($plan->frequency == 3) / {{ __('messages.plan.yearly') }} @elseif($plan->frequency == 4) / {{ __('messages.plan.unlimited') }} @endif

    @if ($plan->trial_days > 0)
  • @endif
  • @foreach (getPlanFeature($plan) as $feature => $value)
  • @if (getLoginUserLanguage() == 'ar') {{ __('messages.plan.' . $feature) }} @if($value == 1) @else @endif @else @if($value == 1) @else @endif {{ __('messages.plan.' . $feature) }} @endif
  • @endforeach
@if (getLoginUser()) @if (getLoginUser()->hasRole('admin')) @if (getCurrentSubscription()) @if (!getCurrentSubscription()->isExpired() && getCurrentSubscription()->plan_id == $plan->id) {{ __('messages.plan.currently_active') }} @elseif(getCurrentSubscription()->isExpired() && getCurrentSubscription()->plan_id == $plan->id) {{ __('messages.plan.renew_plan') }} @else {{ __('messages.plan.switch_plan') }} @endif @else {{ __('messages.plan.choose_plan') }} @endif @endif @else {{ __('messages.plan.choose_plan') }} @endif
@endforeach
@endif
@foreach ($features as $feature) @endforeach
@foreach ($features as $feature)

{{ $feature->title }}

@endforeach
@foreach ($steps as $step)
{{ $step->title }}

{{ $step->sub_title }}

{{ $step->title }}

{{ $step->description }}

@endforeach
@if ($testimonials->count() > 0)

{{ getSadminSettingValue('testimonial_main_title') }}

@foreach ($testimonials as $testimonial)
images

{{ $testimonial->name }}

{{ $testimonial->description }}

{{ $testimonial->name }}
images
@endforeach
@endif @if ($faqs->count() > 0)

{{ __('messages.front_web.faqs_title') }}

@foreach ($faqs as $faq)
{{ $faq->description }}
@endforeach
@endif

{{ getSadminSettingValue('contact_us_main_title') }}

{{ getSadminSettingValue('contact_us_description') }}

{{ getSadminSettingValue('address') }}

@csrf
{{ __('messages.front_web.first_name') }}
{{ __('messages.front_web.email_address') }}
{{ __('messages.front_web.subject') }}
{{ __('messages.front_web.message') }}
@endsection