@extends('layouts.contentNavbarLayout') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Minutes of Meeting (MoM) Management

@foreach ($meetings as $meeting)
Edit Meeting
@csrf @method('PUT')
@foreach ($users as $user) @php $attendees = json_decode($meeting->attendees ?? '[]'); @endphp id, $attendees ?? []) ? 'checked' : '' }}>
@endforeach
form-check
@foreach ($meeting->actionItems as $index => $actionItem)
@php // Decode the responsible_persons JSON to an array $assignedUsers = json_decode($actionItem->responsible_persons ?? '[]'); @endphp @foreach($users as $user)
id, $assignedUsers) ? 'checked' : '' }}>
@endforeach
@endforeach
@endforeach
Venue Title Meeting Date Attendees Action
{{ $meeting->venue }} {{ $meeting->title }} {{ \Carbon\Carbon::parse($meeting->meeting_date)->format('d M Y h:i A') }} {{ implode(', ', $meeting->attendee_names) }}
@foreach ($meetings as $meeting) @endforeach
Add New Meeting
@csrf
Please provide a meeting title.
Please provide a valid meeting date.
Please specify the venue.
Please specify the organizer.
@foreach ($users as $user)
@endforeach
Please provide the agenda.
Please provide the discussion points.
Please specify the decisions made.
@endsection