@extends('back.template') @section('head') @stop @section('main') @include('back.partials.entete', ['title' => trans('back/comments.dashboard'), 'icone' => 'comment', 'fil' => trans('back/comments.comments')])
{!! $links !!}
@foreach ($comments as $comment)
{{ trans('back/comments.author') }} {{ trans('back/comments.date') }} {{ trans('back/comments.post') }} {{ trans('back/comments.valid') }} {{ trans('back/comments.seen') }}
{{ $comment->user->username }} {{ $comment->created_at }} {{ $comment->post->title }} {!! Form::checkbox('valide', $comment->user->id, $comment->user->valid) !!} {!! Form::checkbox('seen', $comment->id, $comment->seen) !!} {!! Form::open(['method' => 'DELETE', 'route' => ['comment.destroy', $comment->id]]) !!} {!! Form::destroy(trans('back/comments.destroy'), trans('back/comments.destroy-warning'), 'btn-xs') !!} {!! Form::close() !!}
{!! $comment->content !!}
@endforeach
{!! $links !!}
@stop @section('scripts') @stop