@extends('frontend.layout') @section('title', $page->name) @section('content') @php $contentFormSection = $page->sections->firstWhere('section_name', 'service_content_form_section'); $whySection = $page->sections->firstWhere('section_name', 'service_why_section'); $parallaxSection = $page->sections->firstWhere('section_name', 'parallax_section'); $iconBoxSection = $page->sections->firstWhere('section_name', 'service_icon_box'); $businessStructureSection = $page->sections->firstWhere('section_name', 'service_business_structure'); $titleParagraphSection = $page->sections->firstWhere('section_name', 'title_paragraph_card'); $blogSection = $page->sections->firstWhere('section_name', 'home_blog_section'); $contentSection = $page->sections->firstWhere('section_name', 'content'); @endphp @if($contentFormSection)
{{ $contentFormSection->section_json['sub_heading'] }}

{{ $contentFormSection->section_json['heading'] }}

{{ $contentFormSection->section_json['paragraph'] }}

    @for($i = 0; $i < 3; $i++) @if(!empty($contentFormSection->section_json["list_$i"]))
  • {{ $contentFormSection->section_json["list_$i"] }}
  • @endif @endfor
@@csrf

{{ $contentFormSection->section_json['form_heading'] }}

{{ $contentFormSection->section_json['form_sub_heading'] }}

@endif @if($parallaxSection)

{{$parallaxSection->section_json['heading']}}

{{$parallaxSection->section_json['paragraph']}}

@endif @if(request()->is('public-limited-company')) @endif @if($whySection && !empty($whySection->section_table))
{{ $whySection->section_json['sub_heading'] }}

{{ $whySection->section_json['heading'] }}

@foreach($whySection->section_table as $item) @if(is_array($item) && !empty($item['title']))

{{ $item['title'] }}

{{ $item['paragraph'] }}

@if(!empty($item['icon']))
{{ $item['title'] }}
@endif
@endif @endforeach
@endif @if($titleParagraphSection && !empty($titleParagraphSection->section_json))

{{ $titleParagraphSection->section_json['heading'] }}

@for($i = 0; $i <= 6; $i++) @if(isset($titleParagraphSection->section_json['card_' . $i]))
{!! $titleParagraphSection->section_json['card_' . $i] !!}
@endif @endfor
@endif @if($iconBoxSection && !empty($iconBoxSection->section_table))

{{$iconBoxSection->section_json['heading']}}

@endif @if($businessStructureSection && !empty($businessStructureSection->section_table))
{{ $businessStructureSection->section_json['sub_heading'] }}

{{ $businessStructureSection->section_json['heading'] }}

@foreach(array_values($businessStructureSection->section_table) as $item) @if(isset($item['service'])) @endif @endforeach
Private Limited Company One Person Company Limited Liability Partnership Partnership Firm Proprietorship Firm
{{ $item['service'] }} {{ $item['private_limited_company'] }} {{ $item['one_person_company'] }} {{ $item['limited_liability_partnership'] }} {{ $item['partnership_firm'] }} {{ $item['proprietorship_firm'] }}
@endif @if($blogSection)

{{ $blogSection->section_json['heading'] }}

{{ $blogSection->section_json['sub_heading'] }}

@endif @if($contentSection && !empty($contentSection->section_json))
{{ $contentSection->section_json['sub_heading']}}

{{ $contentSection->section_json['heading']}}

Updated on : {{ $page->updated_at->format('F jS, Y') }}
@endif @if($contentSection && !empty($contentSection->section_json['content']))
{!! $contentSection->section_json['content'] !!}
@endif @endsection