@extends('layouts.meeting') @section('Breadcrumbs') {!! Breadcrumbs::render('meetings.list') !!} @endsection @section('content-meeting')

Pauta da sessão


@shield('list.signers')

Assinatura Digital

@php $type = $type ?? 'pauta'; $signer = \App\Models\SignatureSigners::where('id_document', $meeting_id) ->where('document_type', '!=', 'ata') ->first(); $checkStatus = null; if ($signer) { $checkStatus = $signer->status === 'SIGNED' ? 'SIGNED' : 'PENDING'; } $url = request()->getHost(); @endphp
@if ($checkStatus === 'PENDING')
Aguardando assinaturas
@elseif($checkStatus === 'SIGNED') Documento assinado Download @else @endif
@endshield {{--
--}} {{-- --}} {{--
--}}
    @foreach ($structurepautas as $reg) {!! renderNode($reg, 0, 0, $meeting_id) !!} @endforeach
@foreach ($pautas as $p) @endforeach @endsection