@extends('frontend.layouts.master') @section('og_metatag_section') @endsection @section('content')

Detalles del blog

{{ $blog->title }}
  • By {{ $blog->user->name }}
  • Comentarios
  • {{ date('d m Y', strtotime($blog->created_at)) }}

{!! $blog->title !!}

{!! $blog->description !!}

{{ count($comments) }} Comentarios

@foreach ($comments as $comment)
review

{{ $comment->user->name }} {{ date('d M Y', strtotime($comment->created_at)) }}

{{ $comment->comment }}

@endforeach @if ($comments->hasPages())
{{ $comments->links() }}
@endif

Deja un comentario

Los campos obligatorios están marcados *

@csrf
@endsection