@extends('layouts.app_main') @section('content')
Index
{{ csrf_field() }}

@foreach($pnps as $pnp) @if(count($pnp->children)) @if(count($pnp->content)) {{$pnp->heading}}
@else {{$pnp->heading}}
@endif @foreach($pnp->children as $child) @if(count($child->content))        {{$child->heading}}
@else {{$child->heading}}
@endif @endforeach
@else {{$pnp->heading}}

@endif @endforeach
@endsection