@extends('layouts.app') @section('content')
@csrf

{{(__('Write a comment'))}}

@if($errors->has('comment')) @endif
@if(!$comments->isEmpty())

{{(__('Comments'))}}

@foreach($comments as $br=>$comment)

{{$comment->comment}}

{{$comment->name.' '.$comment->surname}} {{date('d.m.Y. H:i:s', strtotime($comment->created_at))}}
@endforeach
@endif @endsection