@extends('templates.public', [ 'title' => 'Blog' ]) @section('content')

Blog

@foreach(App\Models\Blog::getBlogEntries() as $entry)
@if($entry['headerimage'] != '')
@endif

{{ $entry['title'] }}

{!! $entry['body'] !!}

@endforeach
@endsection