@extends('layouts.app') @section('title', 'Training Reports') @section('content') @empty($reports)
Position: {{ $report->position }}
Mentor: {{ $report->user->name }}
Content:
{{ $report->content }}
Attachments:
@if(count($report->attachments) == 0) No attachments to this report. @endif @foreach($report->attachments as $attachment) {{ $attachment->url }} @endforeach