@if(count($comments)>0) @foreach($comments as $comment)
@if($comment->user) @if($comment->user->profile_image != "") {!! HTML::image($profilePath.$comment->user->profile_image) !!} @else {!! HTML::image($profilePath.'user.png') !!} @endif @endif

@if($comment->user) {{ $comment->user->first_name }} {{ $comment->user->last_name }} @else Owner @endif {{ $comment->created_at->diffForHumans() }}

{!! nl2br($comment->comment) !!}
Edit Remove
@endforeach @else

No Comments


@endif