|
@@ -4,9 +4,33 @@
|
|
|
|
|
|
<div class="container">
|
|
|
<div class="col-12 col-md-8 offset-md-2 mt-4">
|
|
|
- @php($item = $status->parent())
|
|
|
- @php($showSingleComment = true)
|
|
|
- @include('status.template')
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-body p-0 m-0 bg-light">
|
|
|
+ <div class="d-flex p-0 m-0 align-items-center">
|
|
|
+ <img src="{{$status->parent()->thumb()}}" width="150px" height="150px">
|
|
|
+ <div class="p-4">
|
|
|
+ <div>
|
|
|
+ <img src="{{$status->parent()->profile->avatarUrl()}}" class="rounded-circle img-thumbnail mb-1 mr-1" width="30px">
|
|
|
+ <span class="h5 font-weight-bold">{{$status->parent()->profile->username}}</span>
|
|
|
+ <a class="float-right" href="{{$status->parent()->url()}}"><i class="far fa-share-square"></i></a>
|
|
|
+ </div>
|
|
|
+ <div class="">
|
|
|
+ <p class="mb-0">{{ str_limit($status->parent()->caption, 125) }}</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="card-body">
|
|
|
+ <div class="media py-5">
|
|
|
+ <img class="mr-3 rounded-circle img-thumbnail" src="{{$status->profile->avatarUrl()}}" width="60px">
|
|
|
+ <div class="media-body">
|
|
|
+ <h5 class="mt-0 font-weight-bold">{{$status->profile->username}}</h5>
|
|
|
+ <p class="mb-1">{!! $status->rendered !!}</p>
|
|
|
+ <p class="mb-0"><a href="{{$status->url()}}" class="text-muted">{{$status->created_at->diffForHumans()}}</a></p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|