Commit f91b17c9 authored by PedroLopesUPE's avatar PedroLopesUPE
Browse files

Adição do front-end do Anexo B

Estilização inicial simples
parent 34920dc5
......@@ -311,8 +311,6 @@ class UserPadController extends Controller
}
}
$treated_anexo_pad = [];
$treated_anexo_item_valor = "";
$treated_anexo_item_nome = "";
foreach ($anexoPad as $nome_valor=>$valor)
{
if (in_array($nome_valor, $valores_lista_negra))
......@@ -344,7 +342,6 @@ class UserPadController extends Controller
$treated_anexo_pad[$nome_valor] = $valor;
}
}
$model['anexo'] = $treated_anexo_pad;
date_default_timezone_set("America/Recife");
$dateTime = now()->format('d/m/Y (H:i:s)');
......@@ -355,6 +352,7 @@ class UserPadController extends Controller
'nome' => $userPad->user->{'name'},
'email' => $userPad->user->{'email'}
],
'anexo' => $treated_anexo_pad,
'model' => $treated_model,
'horas' => $horas
);
......@@ -363,7 +361,6 @@ class UserPadController extends Controller
// // $userPad->pesquisaCoordenacoes->toArray(),
// $anexoPad,
// $treated_anexo_pad,
// // $model['anexo'],
// $cursos,
// // ($model['extensao']['1. EXTENSÃO (COORDENAÇÃO DE ATIVIDADES DE EXTENSÃO HOMOLOGADA NA PROEC)']),
// // public_path('\images\estado_pe_logo.png'),
......
......@@ -13,6 +13,15 @@
</header>
<div style="display: flex; flex-direction: column; padding-left:5mm; gap: 10mm">
<h1 style="font-size: 16px; font-weight: bold; text-align: center">
ANEXO B
</h1>
@foreach ($data['anexo'] as $nome=>$valor)
<h4 style="font-size: 12px; font-weight: normal; padding-bottom: 5px">
<b>{{$nome}}</b>: {{$valor}}
</h4>
@endforeach
<hr>
@foreach ($data['model'] as $nome_dimensao=>$dimensao)
<h1 style="font-size: 16px; font-weight: bold">
{{$nome_dimensao}}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment