| Server IP : 54.94.228.101 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/storage/framework/views/ |
Upload File : |
<?php if(count($listaHistorico)){ ?>
<h3 class="subtitulo-detalhes-entrega">OCORRÊNCIAS</h3>
<table class="tabela inside">
<tr>
<th>Data</th>
<th>Ocorrência</th>
<th>Observações</th>
</tr>
<?php foreach ($listaHistorico as $historico): ?>
<tr>
<td class="hide-mobile" width="12%"><?php echo strtoupper(strftime('%d %b %y', strtotime($historico->data))); ?></td>
<td class="hide-desktop" width="15%">
<?php echo date('d/m', strtotime($historico->data)); ?>
<p class="table-sub"><?php echo date('Y', strtotime($historico->data)); ?></p>
</td>
<td class="hide-mobile" width="18%"><?php echo $historico->status->nome; ?></td>
<td class="hide-desktop" width="30%"><?php echo $historico->status->nome; ?></td>
<td class="hide-desktop"><?php echo $historico->observacao; ?></td>
<td class="hide-mobile" width="70%"><?php echo $historico->observacao; ?></td>
</tr>
<?php endforeach ?>
</table>
<?php } ?>
<?php if(count($vinhosAdega)){ ?>
<h3 class="subtitulo-detalhes-entrega">ITENS</h3>
<table class="tabela inside">
<tr>
<th>Produto</th>
<th class="text-center">Quant.</th>
<?php /* ?>
<th class="text-right">Preço Unitário</th>
<th class="text-right">Total Produto</th>
<?php */ ?>
</tr>
<?php foreach ($vinhosAdega as $produto): ?>
<tr>
<td class="nome-produto">
<a href="<?php echo url('/produto/detalhe/'.$produto->slug); ?>">
<?php echo $produto->nome; ?>
</a>
</td>
<td class="text-center"><?php echo number_format($produto->quantidade_na_adega,0,'',''); ?> Gr.</td>
<?php /*
<td class="text-right">R$ <?php echo $produto->valor_total_produto ? number_format($produto->valor_total_produto / $produto->quantidade_produto,2,',','.') : '0,00'; ?> </td>
<td class="text-right">R$ <?php echo number_format($produto->valor_total_produto,2,',','.'); ?></td>
<?php */ ?>
</tr>
<?php endforeach ?>
</table>
<?php }else{ ?>
<h4>
<i> Essa adega não possui vinhos. </i>
</h4>
<?php } ?>