MORE LAYOUTgit add public/mobile public/nojs/ public/shoop.png resources/views/layout1/apply.blade.php resources/views/layout1/nojs.blade.php resources/views/layout1/tos.blade.php resources/views/layout4/ resources/views/layout5!
This commit is contained in:
15
resources/views/layout4/partials/comment.blade.php
Normal file
15
resources/views/layout4/partials/comment.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="card @if($del = !is_null($comment->deleted_at)) panel-danger @else panel-default @endif" data-id="{{$comment->id}}" author="{{$comment->user->username}}">
|
||||
<div id="{{ $comment->id }}" class="comment panel-body" author="{{$comment->user->username}}">
|
||||
<a class="{{$comment->user->username}}" href="/user/{{$comment->user->username}}">{!! $comment->user->displayName() !!}</a> {{$comment->created_at}} <a href="#{{ $comment->id }}">{{ $comment->id }}</a>
|
||||
@simplemd($comment->content)
|
||||
</div>
|
||||
<div class="panel-footer">
|
||||
@if($mod)
|
||||
@if($del)
|
||||
<a href="#" onclick="restoreComment($(this))"><i style="color:green"; class="fa fa-refresh" aria-hidden="true"></i></a>
|
||||
@else
|
||||
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user