@extends('layouts.main') @section('title', $blog->title . ' - ' . setting('brand.name', 'Grace Family Church')) @section('meta_description', $blog->meta_description ?: ($blog->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($blog->body), 155))) @if($blog->coverUrl()) @section('og_image', $blog->coverUrl()) @endif @section('json_ld') @endsection @section('content')
coverUrl()) style="background: {{ $blog->gradientCss() }};" @endif> @if($blog->coverUrl()) {{ $blog->title }} @endif
All Articles

{{ $blog->title }}

{{ $blog->published_at->format('d F Y') }} {{ $blog->views }} views
{!! $blog->body !!}

Comments ({{ $comments->count() }})

@if(session('comment_success'))
{{ session('comment_success') }}
@endif
@forelse($comments as $comment)
{{ strtoupper(substr($comment->name, 0, 1)) }}
{{ $comment->name }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->body }}

@if($comment->admin_response)
{{ setting('brand.name', 'Grace Family Church') }}

{{ $comment->admin_response }}

@endif
@empty

Be the first to comment.

@endforelse
Leave a Comment
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
Comments are reviewed before they appear.
@if($related->count() > 0) @endif
@endsection