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

Pauta da sessão


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'; } @endphp
@if ($checkStatus === 'PENDING')
Aguardando assinaturas
@elseif($checkStatus === 'SIGNED') Documento assinado Download @else @endif
{{--
--}} {{-- --}} {{--
--}}
    @foreach ($structurepautas as $reg) {!! renderNode($reg, 0, 0, $meeting_id) !!} @endforeach
@foreach ($pautas as $p) @endforeach @endsection