@extends('home.layouts.index') @section('title') {{ $article->title }} @endsection @section('description') @endsection @section('keywords') @endsection @section('style') @endsection @section('script') @endsection @section('content')

{{ $article->title }}

{!! $article->description !!}

{{ $article->approvedComments()->count() }} نظر

    @foreach($article->approvedComments()->where('parent_id','==',0)->get() as $comment)
  • Author Images
    {{ $comment->User->name }}
    {{ verta($comment->User->created_at)->format('d - m - Y') }}

    {{ $comment->text }}

    @if ( $comment->replies )
      @include('home.comments.commentArticle',['childs' => $comment->replies])
    @endif
  • @endforeach
@auth

نظر شما

@csrf

آدرس ایمیل شما منتشر نخواهد شد.

@else
برای ثبت کامنت به مقاله باید وارد شوید
@endauth
@endsection