瀏覽代碼

Update all comments view

Daniel Supernault 5 年之前
父節點
當前提交
0a5eaa3118
共有 1 個文件被更改,包括 8 次插入4 次删除
  1. 8 4
      resources/views/status/comments.blade.php

+ 8 - 4
resources/views/status/comments.blade.php

@@ -5,19 +5,19 @@
 <div class="container px-0 mt-md-4">
   <div class="col-12 col-md-8 offset-md-2">
     
-    <div class="card">
+    <div class="card shadow-none border">
       <div class="card-body">
         <p class="mb-0">
-          <img class="img-thumbnail mr-2" src="{{$user->avatarUrl()}}" width="24px" height="24px" style="border-radius:12px;">
+          <img class="img-thumbnail mr-2" src="{{$profile->avatarUrl()}}" width="24px" height="24px" style="border-radius:24px;">
           <span class="font-weight-bold pr-1"><bdi><a class="text-dark" href="{{$status->profile->url()}}">{{ str_limit($status->profile->username, 15)}}</a></bdi></span>
           <span class="comment-text">{!! $status->rendered ?? e($status->caption) !!} <a href="{{$status->url()}}" class="text-dark small font-weight-bold float-right pl-2">{{$status->created_at->diffForHumans(null, true, true ,true)}}</a></span>
         </p>
-        <hr>
+        <p class="text-center font-weight-bold text-muted small text-uppercase pt-3">All Comments</p>
         <div class="comments">
           @foreach($replies as $item)
           <p class="mb-2">
             <span class="font-weight-bold pr-1">
-              <img class="img-thumbnail mr-2" src="{{$item->profile->avatarUrl()}}" width="24px" height="24px" style="border-radius:12px;">
+              <img class="img-thumbnail mr-2" src="{{$item->profile->avatarUrl()}}" width="24px" height="24px" style="border-radius:24px;">
               <bdi><a class="text-dark" href="{{$item->profile->url()}}">{{ str_limit($item->profile->username, 15)}}</a></bdi>
             </span>
             <span class="comment-text">
@@ -28,9 +28,13 @@
             </span>
           </p>
           @endforeach
+
         </div>
       </div>
     </div>
+    <div class="mt-2 d-flex justify-content-center">
+          {{ $replies->links() }}
+    </div>
   </div>
 </div>