You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.9 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

@if( isset($comments) && count($comments) > 0 )
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 col-lg-12">
<!-- Fluid width widget -->
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">
<span class="glyphicon glyphicon-comment"></span> 
Recent Comments
</h3>
</div>
<div class="panel-body">
<ul class="media-list">
@foreach($comments as $comment)
<li class="media">
<div class="media-left">
<img src="http://placehold.it/60x60" class="img-circle">
</div>
<div class="media-body">
<h4 class="media-heading">
<small>
<a href="users/{{ $comment->user->id }}">{{ $comment->user->name }}{{ $comment->user->email }}</a>
<br>
commented on {{ $comment->created_at }}
</small>
</h4>
<p>{{ $comment->body }}</p>
<b>Proof:</b>
<p>{{ $comment->url }}</p>
</div>
</li>
@endforeach
</ul>
<a href="#" class="btn btn-default btn-block">More Events »</a>
</div>
</div>
<!-- End fluid width widget -->
</div>
</div>
@endif