@extends('layouts.frontend.master-2') @section('content')

{{$article->title_en}}

{!! $article->description_en !!}
@if ( $relatedBlogs->count() > 0) @endif
@if ( $comments->count() > 0)

Comments ({{ $comments->count() }})

    @foreach ($comments as $comment)
  1. {{ $comment->adder_name }}
    {{\Carbon::parse($comment->created_at)->diffForHumans()}}

    {{ $comment->content }}

  2. @endforeach
@endif

Leave a comment

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Your email address will not be published. Required fields are marked *

@endsection @section('js') @endsection