Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
bb2771a9
"app/vscode:/vscode.git/clone" did not exist on "9e1598d723b2b8cfdc0a0eeb8fa4ae0324beb917"
Commit
bb2771a9
authored
Aug 23, 2023
by
unknown
Browse files
Correção de erro na parte da visualização dos relatorios com perfil proponente
parent
0ded9715
Changes
1
Show whitespace changes
Inline
Side-by-side
resources/views/projeto/formularioVisualizar/relatorio.blade.php
View file @
bb2771a9
...
...
@@ -64,11 +64,14 @@
</thead>
<tbody>
@foreach($AvalRelatParcial as $aval)
@php $arquivo = \App\Arquivo::find($aval->arquivo_id);@endphp
@php
$arquivo = \App\Arquivo::find($aval->arquivo_id);
$participante = \App\Participante::find($arquivo->participanteId);
@endphp
<tr>
<th
style=
"color: black;"
>
{{$cont += 1}}
</th>
<td>
@if($arquivo->participanteId != null
) {{\App\Participante::find($arquivo->
participante
Id)
->user->name}}@endif
@if($arquivo->participanteId != null
&&
!is_null($participante)) {{$
participante->user->name}}
@endif
</td>
<td>
Parcial
</td>
<td>
@if($aval->nota == null) Pendente @else {{$aval->nota}} @endif
</td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment