@extends('front::user.layouts.master') @section('user-content')

{{ trans('front::messages.user.your-views') }}

@if($comments->count()) @foreach($comments as $comment)
@if($comment->status == 'pending')
{{ trans('front::messages.user.waiting-for-confirmation') }}
@elseif($comment->status == 'accepted')
{{ trans('front::messages.user.accepted') }}
@else
{{ trans('front::messages.user.not-approved') }}
@endif

{!! nl2br(htmlentities($comment->body)) !!}

@endforeach @else

{{ trans('front::messages.user.there-nothing-to-show') }}

@endif
@endsection