@extends('front.app') @section('meta') @if($parent_menu->children->isNotEmpty()) @endif @stop @section('container')
@include('front.templates.background-header')
@include('front.templates.background-inner-page')

{{ $parent_menu->name ?? '' }}

@if($parent_menu->children->isNotEmpty())
@foreach($parent_menu->children as $one_item)
{!! $one_item->body ?? '' !!}
@endforeach
@endif
@include('front.templates.background-bottom')
@stop