Meeting Participants
| Name |
Role |
Status |
Action |
@foreach ($meeting->participants as $participant)
{{ $participant->user->name }}
{{ $participant->user->email }}
|
{{ $participant->role }}
|
{{ $participant->attendance_status }}
|
|
@endforeach
Meeting Documents
@if ($meeting->documents->count() > 0)
@foreach ($meeting->documents as $document)
{{ $document->file_name }}
Type: {{ $document->document_type }}
Size: {{ number_format($document->file_size / 1024, 2) }} KB
Uploaded: {{ $document->created_at->format('M d, Y H:i') }}
By: {{ $document->uploadedBy->name }}
@if ($document->remarks)
Remarks: {{ $document->remarks }}
@endif
@endforeach
@else
No documents uploaded yet.
@endif
Action Items
@if ($openActions->count() > 0)
Open Actions
@foreach ($openActions as $action)
{{ $action->title }}
@if ($action->description)
{{ $action->description }}
@endif
Assigned to: {{ $action->assignedTo->name }}
Due Date: {{ $action->due_date->format('M d, Y') }}
{{ $action->status }}
@endforeach
@endif
@if ($completedActions->count() > 0)
Completed Actions
@foreach ($completedActions as $action)
{{ $action->title }}
Assigned to: {{ $action->assignedTo->name }}
Completed: {{ $action->updated_at->format('M d, Y') }}
{{ $action->status }}
@endforeach
@endif
@if ($meeting->actions->count() == 0)
No action items yet.
@endif
Meeting Information
| Title: |
{{ $meeting->title }} |
| Type: |
{{ $meeting->meeting_type }} |
| Status: |
{{ $meeting->status }} |
| Date: |
{{ $meeting->meeting_date->format('M d, Y H:i') }} |
| Duration: |
{{ $meeting->start_time }} - {{ $meeting->end_time }} |
Additional Details
| Organizer: |
{{ $meeting->organizer->name }} |
| Created: |
{{ $meeting->created_at->format('M d, Y H:i') }} |
| Updated: |
{{ $meeting->updated_at->format('M d, Y H:i') }} |
| Total Participants: |
{{ $meeting->participants->count() }} |
| Total Documents: |
{{ $meeting->documents->count() }} |
@if ($meeting->description)
Description
{{ $meeting->description }}
@endif