@extends('layouts.guest-page') @section('title', $post->title) @section('meta_description', $post->excerpt ?? Str::limit(strip_tags($post->content), 160)) @section('meta_image', $post->image ?? asset('images/og-image.jpg')) @section('meta_type', 'article') @section('no-container') @endsection @section('content')
Article
{{ ceil(str_word_count(strip_tags($post->content)) / 200) }} min read

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif
@if($post->image)
{{ $post->title }}
@endif
{!! nl2br(e($post->content)) !!}

Share

@endsection @section('scripts') @endsection