@extends('layouts.app') @section('title', $post->meta_title ?: $post->title) @section('meta_description', $post->meta_description ?: Str::limit(strip_tags($post->content), 160)) @push('seo') @if($post->og_image || $post->image) @endif @if($post->meta_keywords) @endif @if($post->og_image || $post->image) @endif @endpush @section('content')

{{ $post->title }}

By {{ $post->user->name }} | {{ $post->created_at->format('M d, Y') }} | {{ $post->view_count }} @auth
@csrf
@csrf
@endauth
@if($post->image) {{ $post->title }} @endif
{!! $post->content !!}
Share this news:
Facebook Twitter WhatsApp

Comments

@auth
@csrf
@else

Please login to comment.

@endauth
@foreach($post->comments as $comment)
{{ $comment->user->name }}

{{ $comment->comment }}

@endforeach
@endsection