{{ $title }}

  • Mulai Acara

    @if ($rapat->tanggal) @php Carbon\Carbon::setLocale('id'); $tanggal = Carbon\Carbon::createFromFormat('Y-m-d', $rapat->tanggal); $new_tanggal = $tanggal->translatedFormat('l, d F Y'); @endphp @else @php $new_tanggal = '-'; @endphp @endif {{ $new_tanggal }} {{ $rapat->jam_mulai }}
  • Selesai Acara

    {{ $new_tanggal }} {{ $rapat->jam_selesai }}
  • Jenis Pertemuan

    {{ $rapat->jenis }}
  • Lokasi Pertemuan

    {{ $rapat->lokasi }}
  • Jumlah Peserta

    {{ count($rapat->pegawai) }}
  • Peserta Hadir

    {{ count($rapat->pegawai->where('status', 'Hadir')) }}
  • Peserta Tidak Hadir

    {{ count($rapat->pegawai->where('status', 'Tidak Hadir')) }}
  • Detail Pertemuan

    {!! $rapat->detail ? nl2br(e($rapat->detail)) : '-' !!}
    @foreach ($rapat->notulen as $notulen)
  • {{ $notulen->notulen }}

  • @endforeach
@if ($mypegawai->status == 'Tidak Hadir') @endif

Notulen

@csrf
@error('notulen')
{{ $message }}
@enderror
@include('sweetalert::alert')