@extends('layouts.app') @section('title', $page->meta_title ?? $page->title) @section('description', $page->meta_description ?? $page->excerpt ?? '') @section('content')

{{ $page->title }}

@if($page->excerpt)

{{ $page->excerpt }}

@endif @if($page->published_at)
{{ $page->published_at->format('d M Y') }}
@endif
@if($page->featured_image)
{{ $page->title }}
@endif
{!! $page->content !!}
@if($page->children->where('status', 'published')->count() > 0)

İlgili Sayfalar

@foreach($page->children->where('status', 'published')->sortBy('sort_order') as $child)

{{ $child->title }}

@if($child->excerpt)

{{ $child->excerpt }}

@endif
@endforeach
@endif
Ana Sayfaya Dön @if($page->parent) Üst Sayfa @endif
@endsection