<td><b>Data do Emprestimo</b></td> <td><b>Açao Parcelas</b></td> <td><b>Ação Pagamento</b></td> </tr> <?php foreach ($emprestimos as $emprestimo) { ?> <tr> <td><?php echo $emprestimo->id; ?> </td> <td><?php echo 'R$ ' . Money_format::br_format($emprestimo->valor_emprestimo); ?> </td> <td><?php echo $emprestimo->data_emprestimo; ?> </td> <td><a <?php Helper::link_to('parcelas.listar_parcelas', "id_cliente={$emprestimo->id_cliente}|id_emprestimo={$emprestimo->id}"); ?> Visualizar Parcelas Pagas</a></td> <td><a <?php Helper::link_to('parcelas.form_cadastrar', "id_cliente={$emprestimo->id_cliente}|id_emprestimo={$emprestimo->id}"); ?> Cadastrar Pagamento</a></td> </tr>
<td><b>Valor da Parcela</b></td> <td><b>Data de Pagamento</b></td> <td><b>Hora do Pagamento</b></td> </tr> <?php foreach ($parcelas as $parcela) { ?> <tr> <td><?php echo $parcela->id; ?> </td> <td><?php echo 'R$ ' . Money_format::br_format($parcela->valor_parcela); ?> </td> <td><?php echo $parcela->data_pagamento; ?> </td> <td><?php echo $parcela->hora_pagamento; ?> </td> </tr> <?php } ?>