{{-- Button to open modal --}} View Reports {{-- Modal --}} Activity Reports for {{ $activity->name }}

Activity Details

Name: {{ $activity->name }}

Description: {{ $activity->description }}

Reports

@if ($reports->count() > 0)
    @foreach ($reports as $report)
  • {{ $report->name }}

    {{ $report->description ?? 'No description' }}
    Uploaded on: {{ $report->created_at->format('F j, Y') }}
    Responsible: {{ $report->responsiblePerson ? $report->responsiblePerson->name : 'Na' }}
    UUID: {{ $report->uuid }}

  • @endforeach
@else

No reports available.

@endif
Close