riainvoice/application/modules/clients/views/partial_notes.php
gandhimathi Bharathirajan c940cb1a2c all files
2017-09-11 14:38:03 +05:30

11 lines
385 B
PHP

<?php foreach ($client_notes as $client_note) : ?>
<div class="panel panel-default small">
<div class="panel-body">
<?php echo nl2br(htmlsc($client_note->client_note)); ?>
</div>
<div class="panel-footer text-muted">
<?php echo date_from_mysql($client_note->client_note_date, true); ?>
</div>
</div>
<?php endforeach; ?>