| 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 $__env->startSection('content'); ?>
<section class="content">
<div class="row">
<div class="col-lg-12">
<div class="box">
<div class="box-body">
<?php if(isset($lancamentos)): ?>
<div class="row" id="row-table-fluxo">
<div style="overflow: auto;">
<table class="table table-bordered" id="table-conta-financeira-lancamento">
<thead>
<tr>
<th class="text-center">Data</th>
<th class="text-left">Empresa</th>
<th>Histórico</th>
<th>Conta Plano Financeiro</th>
<th class="text-center">Débito/Crédito</th>
<th class="text-right">Valor</th>
</tr>
</thead>
<tbody>
<?php if (count($lancamentos) > 0): ?>
<tr>
<td colspan="4"></td>
<td class="text-right"><strong>Total</strong></td>
<td class="text-right">
<strong>R$ <?php echo number_format($total, 2,',','.'); ?></strong>
</td>
</tr>
<?php foreach ($lancamentos as $lancamento): ?>
<tr>
<td class="text-center"><?php echo (!empty($lancamento->data) ? date('d/m/Y', strtotime($lancamento->data)) : ''); ?></td>
<td><?php echo $lancamento->empresa->nome; ?></td>
<td><?php echo $lancamento->historico; ?></td>
<td><?php echo $lancamento->planoFinanceiroConta->codigo . ' ' . $lancamento->planoFinanceiroConta->nome; ?></td>
<td class="text-center"><?php echo $lancamento->debito_credito; ?></td>
<td class="text-right <?php echo e(($lancamento->valor < 0 ? 'color-red' : '')); ?>">
<?php echo e(($lancamento->valor < 0 ? '-' : '')); ?>R$ <?php echo number_format($lancamento->valor, 2,',','.'); ?>
</td>
</tr>
<?php endforeach ?>
<tr>
<td colspan="4"></td>
<td class="text-right"><strong>Total</strong></td>
<td class="text-right">
<strong>R$ <?php echo number_format($total, 2,',','.'); ?></strong>
</td>
</tr>
<?php else: ?>
<tr>
<td colspan="6" class="text-center">
<p>Nenhum registro para ser exibido!</p>
</td>
</tr>
<?php endif ?>
</tbody>
</table>
</div>
</div>
<?php endif; ?>
</div>
<!-- /.box-body -->
</div>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admins.modal', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>