@extends('layouts.blog') @section('title') {{ $post->title . " | Technoblog"}} @endsection @section('blog_content')
{{ $post->title }}
{{ $comment->name }} - {{ $comment->ago() }} @if (auth()->check() && !$comment->is_active && (auth()->user()->hasPermission("approve_all_comments") || $comment->post->user->id == auth()->id())) Confirm
{{ $comment->comment }}
Comments
@if($comments->count() == 0) No comments yet. @endif @foreach ($comments as $comment){{ $comment->name }} - {{ $comment->ago() }} @if (auth()->check() && !$comment->is_active && (auth()->user()->hasPermission("approve_all_comments") || $comment->post->user->id == auth()->id())) Confirm
@endif{{ $comment->comment }}