@extends('layouts.user.dashb4')
@section('content')
@if($reportCount > 0)
@foreach($reports as $report)
@foreach($comments as $comment)
@if($comment->report_id == $report->id)
Name: {{$comment->character_name }}
Comments: {{ $comment->comments }}
@endif
@endforeach
@endforeach
@else
No fc's have submitted reports recently.
@endif
@endsection