message box

This commit is contained in:
medet97 2020-05-15 14:00:36 +05:00
parent 2a37917dfb
commit a08a8cbc17
1 changed files with 2 additions and 2 deletions

View File

@ -33,11 +33,11 @@
</div>
@foreach($ticket->comments as $comment)
<div class="row @if($comment->user_id)justify-content-start @else justify-content-end @endif ">
<div class="@if($comment->user_id)col-lg-offset-4 col-md-offset-4 @endif col-lg-8 col-md-8">
<div class="col-lg-8 col-md-8">
<div class="alert alert-success" role="alert">
<p><strong class="d-block">{{$comment->name}} </strong> <small class="d-block">{{$comment->created_at->diffForHumans()}}</small></p>
<p>{{$comment->text}}</p>
<div><p>{{$comment->text}}</p></div>
<br>
@if($comment->attachment)
<span><strong>Attachment:</strong> <a href="{{asset('user_content/'.$comment->attachment)}}">{{$comment->attachment}}</a></span>