@extends($activeTemplate . 'layouts.master') @section('content')
{{ __($pageTitle) }}
@if ($comments->count() == 0) @else
@foreach ($comments as $comment) @endforeach
@lang('Product | Date') @lang('User') @lang('Comment') @lang('Action')
@if (@$comment->product) {{ __(strLimit(@$comment->product->title, 15)) }} @endif {{ showDateTime($comment->created_at) }}
@php $user = $comment->user; @endphp
{{ __($user->fullname) }}
@{{ $user->username }}
{{ __($comment->text) }}
{{ paginateLinks($comments) }}
@endif
@endsection