1
0
Fork 0

Add comment/reply permalink view

This commit is contained in:
Daniel Supernault 2018-05-29 20:33:59 -06:00
parent f657bba76b
commit 5a41542291
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
@extends('layouts.app')
@section('content')
<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>
</div>
@endsection
@push('scripts')
<script type="text/javascript">
$(document).ready(function() {
$('.reactions').hide();
$('.more-comments').hide();
$('.card-footer').hide();
});
</script>
@endpush