@extends('frontend.layouts.master') @section('title', $blog->seoTitle()) @section('meta_description', $blog->seoDescription()) @section('meta_keywords', $blog->meta_keywords ?: 'UK university, FBA UK LTD, education blog') @section('meta_robots', $blog->meta_robots ?: 'index,follow') @section('canonical', $blog->canonical_url ?: route('blog.details', $blog->slug)) @section('og_type', 'article') @section('og_title', $blog->og_title ?: $blog->seoTitle()) @section('og_description', $blog->og_description ?: $blog->seoDescription()) @section('og_image', $blog->ogImageUrl() ?: $blog->imageUrl()) @section('og_url', route('blog.details', $blog->slug)) @section('content') @include('frontend.partials.page-hero', [ 'currentPage' => \Illuminate\Support\Str::limit($blog->title, 40), 'parentPage' => 'Blog', 'parentRoute' => 'blog', 'title' => $blog->title, 'subtitle' => strip_tags($blog->excerpt ?: ''), 'bgImage' => $blog->breadcrumbImageUrl(), ])
@if($blog->category) {{ $blog->category->name }} @endif

{{ $blog->title }}

{{ $blog->estimatedReadTime() }} @if($blog->author) {{ $blog->author }} @endif
@if($blog->imageUrl())
{{ $blog->title }}
@endif
{!! $blog->content !!}
@if($related->count()) @endif
@endsection