@extends('frontend.layouts.master') @section('og_metatag_section') @endsection @section('content') Detalles del blog Inicio Detalles del blog By {{ $blog->user->name }} Comentarios {{ date('d m Y', strtotime($blog->created_at)) }} {!! $blog->title !!} {!! $blog->description !!} Compartir: @if ($nextBlog) {{ truncate($nextBlog->title) }} Previous @endif @if ($previousBlog) {{ truncate($previousBlog->title) }} next @endif {{ count($comments) }} Comentarios @foreach ($comments as $comment) {{ $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 comentario * Enviar comentario Buscador Última publicación @foreach ($latestBlogs as $latestBlog) {{ truncate($latestBlog->title, 50) }} {{ date('d m Y', strtotime($latestBlog->created_at)) }} @endforeach Categorias @foreach ($categories as $category) {{ $category->name }} {{ $category->blogs_count }} @endforeach @endsection
{{ truncate($nextBlog->title) }} Previous
{{ truncate($previousBlog->title) }} next
{{ $comment->comment }}
Los campos obligatorios están marcados *
{{ date('d m Y', strtotime($latestBlog->created_at)) }}
{{ count($comments) }} Comentarios
@foreach ($comments as $comment){{ $comment->user->name }} {{ date('d M Y', strtotime($comment->created_at)) }}
{{ $comment->comment }}