@extends('site.layouts.new.app') @php $meetingLabel = trim(($meeting->SessionType->name ?? 'Sessão') . ' ' . ($meeting->number ? 'nº ' . $meeting->number : '')); @endphp @section('site_content')
Voltar para sessões

Vídeos da sessão

{{ $meetingLabel }} em {{ \Illuminate\Support\Str::before((string) $meeting->date_start, ' ') }}

@if ($mainVideos->isNotEmpty())

Vídeo da ata

@foreach ($mainVideos as $video) @include('site.components.meeting-video-card', [ 'video' => $video, 'title' => 'Vídeo da sessão', 'subtitle' => 'Registro vinculado à ata', ]) @endforeach
@endif @if ($assemblymanVideos->isNotEmpty())

Vídeos por parlamentar

@foreach ($assemblymanVideos as $video) @include('site.components.meeting-video-card', [ 'video' => $video, 'title' => $video->assemblyman->short_name ?? $video->assemblyman->full_name ?? 'Parlamentar não informado', 'subtitle' => 'Registro individual do parlamentar', ]) @endforeach
@endif
@endsection