@extends('layouts.superadmin') @section('title', 'إنشاء تقرير الاجتماع') @section('content')

إنشاء تقرير الاجتماع

{{ $meeting->title }}

{{ $meeting->formatted_date }} - {{ $meeting->location ?? 'غير محدد' }}

تقرير الاجتماع

@csrf

حالة حضور المشاركين

@foreach($meeting->participants as $participant)
{{ $participant->user->name }}
{{ $participant->user->email }}
@endforeach
إلغاء
@endsection