@extends('layouts.app') @section('page-title', $meeting->title) @section('styles') @endsection @section('content')

{{ $meeting->title }}

{{ $meeting->status }} {{ $meeting->meeting_type }}
Date & Time
{{ $meeting->meeting_date->format('M d, Y') }}
{{ $meeting->start_time }} - {{ $meeting->end_time }}
Location
@if ($meeting->meeting_type == 'Physical')
{{ $meeting->venue_name }}
{{ $meeting->address }}
@else
{{ $meeting->meeting_platform }}
@if ($meeting->meeting_link) Join Meeting @endif @endif
Participants
{{ $meeting->participants->count() }}
{{ $meeting->participants->where('attendance_status', 'Attended')->count() }} Attended
Organizer
{{ $meeting->organizer->name }}
{{ $meeting->created_at->format('M d, Y') }}
Meeting Participants
@foreach ($meeting->participants as $participant) @endforeach
Name Role Status Action
{{ $participant->user->name }}
{{ $participant->user->email }}
{{ $participant->role }} {{ $participant->attendance_status }}
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
@endsection @section('scripts-head') @endsection