@extends('admin.master') @section('title', __('Story Comments') . ' - ' . $story->title) @section('content')
@foreach($comments as $comment) @endforeach
{{ __('User') }} {{ __('Comment') }} {{ __('Status') }} {{ __('Created at') }} {{ __('Actions') }}
{{ $comment->comment }} @if($comment->approved) {{ __('Approved') }} @else {{ __('Pending') }} @endif {{ $comment->created_at->format('Y-m-d H:i') }}
@if(!$comment->approved) @else @endif
@if($comments->hasPages())
{{ $comments->appends(request()->input())->onEachSide(1)->links() }} @endif
@endsection