@extends('layouts.main') @section('content')
@if($comments->isEmpty())
No unseen comment(s) found.
@else @foreach($comments as $comment) @endforeach
Subject Routing Slip Unseen Comments Total Comments
{{ $comment->subject->d_subject }} {{ $comment->subject->d_routingslip }} {{ App\Models\DCommentSeen::where('d_id', $comment->d_id)->where('dcs_seen', 0)->count() }} {{ App\Models\Comment::where('comm_document', 1)->where('comm_reference', $comment->d_id)->count() }}
@if($comments->render())
{!! $comments->render() !!}
@endif @endif
@stop