@extends('layouts.default') @php $welcomeSetings = \App\Models\Setting::first(['tagline']); @endphp @section('title', $welcomeSetings->tagline) @section('content') @if ($welcomePage->home_slider_status) @php $slides = \App\Models\Slide::where('status', true)->orderBy('created_at', 'asc')->get(); @endphp @endif @if ($welcomePage->hero_status)
@if ($welcomePage->hero_subtitle) {!! $welcomePage->hero_subtitle !!} @endif @if ($welcomePage->hero_title)

{!! $welcomePage->hero_title !!}

@endif @if ($welcomePage->hero_action_name and $welcomePage->hero_action_link) {!! $welcomePage->hero_action_name !!} @endif
@endif @if ($welcomePage->services_status)
@if (count($services) > 0) @foreach ($services as $service)
3) style="margin-bottom: 60px" @endif>

{{ $service->name }}

{{ $service->caption }}

@endforeach @endif
@endif @if ($welcomePage->slogan_status)
@if ($welcomePage->slogan_subtitle) {{ $welcomePage->slogan_subtitle }} @endif
@if ($welcomePage->slogan_title)

{{ $welcomePage->slogan_title }}

@endif
@if ($welcomePage->key_point_one_icon or $welcomePage->key_point_two_icon or $welcomePage->key_point_three_icon)
@if ($welcomePage->key_point_one_icon and $welcomePage->key_point_one_title and $welcomePage->key_point_one_caption)
@if ($welcomePage->key_point_one_icon) @endif

{{ $welcomePage->key_point_one_title }}

{{ $welcomePage->key_point_one_caption }}

@endif @if ($welcomePage->key_point_two_icon and $welcomePage->key_point_two_title and $welcomePage->key_point_two_caption)
@if ($welcomePage->key_point_two_icon) @endif

{{ $welcomePage->key_point_two_title }}

{{ $welcomePage->key_point_two_caption }}

@endif @if ($welcomePage->key_point_three_icon and $welcomePage->key_point_three_title and $welcomePage->key_point_three_caption)
@if ($welcomePage->key_point_three_icon) @endif

{{ $welcomePage->key_point_three_title }}

{{ $welcomePage->key_point_three_caption }}

@endif
@endif
@endif @if ($welcomePage->mission_status)
@if ($welcomePage->mission_subtitle) {!! $welcomePage->mission_subtitle !!} @endif @if ($welcomePage->mission_title)

{!! $welcomePage->mission_title !!}

@endif
@if ($welcomePage->mission_subtitle)

{!! $welcomePage->mission_description !!}

@endif @if ($welcomePage->mission_action_link and $welcomePage->mission_action_name) {{ $welcomePage->mission_action_name }} @endif
@endif @if ($welcomePage->offer_status)
@if ($welcomePage->offer_one_title)

{!! $welcomePage->offer_one_title !!}

@endif @if ($welcomePage->offer_one_description)

{!! $welcomePage->offer_one_description !!}

@endif
@if ($welcomePage->offer_two_title)

{!! $welcomePage->offer_two_title !!}

@endif @if ($welcomePage->offer_two_description)

{!! $welcomePage->offer_two_description !!}

@endif


@endif @if ($welcomePage->contact_status)
@if ($welcomePage->contact_subtitle) {{ $welcomePage->contact_subtitle }} @endif @if ($welcomePage->contact_title)

{{ $welcomePage->contact_title }}

@endif
@if ($welcomePage->contact_action_name and $welcomePage->contact_action_link) {{ $welcomePage->contact_action_name }} @endif
@endif @endsection