@extends('client.raffles.layouts.app') @section('content') @php $firstAcc = $page->children[0]; @endphp
study uk

{{ $page->title }}

@if ($page->children->count() > 0)
    @foreach ($page->children as $index => $child)
  • {{ $child->title }}
  • @endforeach
@foreach ($page->children as $index => $child)

{{ $child->title }}

{!! $child->description !!}

Why {{ $page->title }}?

@foreach ($page->custom as $key => $value)

{{ $value['key'] ?? '' }}

@endforeach
Office Blog
@foreach ($child->custom as $index => $item)
blog

{{ $item['key'] ?? '' }}

{{ $item['value'] ?? '' }}

@endforeach
@endforeach
@endif
@endsection