@extends('admin.master_layout') @section('title') {{ __('Frontend Section') }} @endsection @section('body-header')

{{ __('Frontend Section') }}

{{ __('Manage Content') }} >> {{ __('Frontend Section') }}

@endsection @php @endphp @section('body-content')
@foreach ($sections as $key => $section) @if ($selected_theme->value == 'all_theme')
{{ $section['name'] }}
@else @foreach ($theme_wise_sections as $theme_wise_section) @if ($theme_wise_section['dispaly_name'] == $selected_theme->value) @foreach ($theme_wise_section['sections'] as $theme_wise_section_section) @if ($theme_wise_section_section == $key)
{{ $section['name'] }}
@endif @endforeach @endif @endforeach @endif @endforeach
@endsection