comment.blade.php 741 B

1234567891011
  1. <div class="comment">
  2. <form method="get" action="/public/users/posts" style="width: 10%"><button name="id" value="{{$comment->user[0]->id}}">{{$comment->user[0]->name}}</button></form>
  3. <div style="width: 90%">
  4. <div style="display:flex; gap: 10px">
  5. <form method="get" action="/public/posts/comment/update" style="width: 93%; text-align: right"><button name="id" value="{{$comment->id}}">&#128396;</button></form>
  6. <form method="get" action="/public/posts/comment/delete"><button name="id" value="{{$comment->id}}">&#10006;</button></form>
  7. </div>
  8. <div style="margin: 10px;">{{$comment->text}}</div>
  9. <div style="text-align: right;"> {{Str::limit($comment->created_at, $limit=11, $end="")}} </div>
  10. </div>
  11. </div>