From a22a5c2922eb9a8d03e330c9198518f93005cecf Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 9 Aug 2018 20:03:33 -0600 Subject: [PATCH] Add show all comments view --- resources/views/status/comments.blade.php | 37 +++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 resources/views/status/comments.blade.php diff --git a/resources/views/status/comments.blade.php b/resources/views/status/comments.blade.php new file mode 100644 index 000000000..01fcf3373 --- /dev/null +++ b/resources/views/status/comments.blade.php @@ -0,0 +1,37 @@ +@extends('layouts.app') + +@section('content') + +
+
+ +
+
+

+ + {{ str_limit($status->profile->username, 15)}} + {!! $status->rendered ?? e($status->caption) !!} {{$status->created_at->diffForHumans(null, true, true ,true)}} +

+
+
+ @foreach($replies as $item) +

+ + + {{ str_limit($item->profile->username, 15)}} + + + {!! $item->rendered ?? e($item->caption) !!} + + {{$item->created_at->diffForHumans(null, true, true ,true)}} + + +

+ @endforeach +
+
+
+
+
+ +@endsection \ No newline at end of file