![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/storage/framework/views/ |
<h4><?php echo $record->present('account'); ?></h4> <p> <?php echo $record->notes; ?> </p> <div class="row mt-3"> <div class="col-md-4"> <div class="table-responsive"> <table class="table table-striped"> <tbody> <tr> <td><?php echo app('translator')->get(trans('Ledger::attributes.record.record_date')); ?></td> <th><?php echo e($record->present('record_date')); ?></th> </tr> <tr> <td><?php echo app('translator')->get(trans('Ledger::attributes.record.amount')); ?></td> <th><?php echo e($record->present('amount')); ?></th> </tr> <tr> <td><?php echo app('translator')->get(trans('Ledger::attributes.record.type')); ?></td> <th><?php echo $record->present('type'); ?></th> </tr> <tr> <td><?php echo app('translator')->get(trans('Ledger::attributes.record.payment_method')); ?></td> <th><?php echo e($record->present('payment_method')); ?></th> </tr> </tbody> </table> <?php if($record->payment_method =='cheque'): ?> <table class="table"> <tr> <td><?php echo app('translator')->get('Ledger::labels.cheque.cheque_number'); ?></td> <td><?php echo e($record->getProperty('cheque_number')); ?></td> </tr> <tr> <td><?php echo app('translator')->get('Ledger::labels.cheque.cheque_name'); ?></td> <td><?php echo e($record->getProperty('cheque_name')); ?></td> </tr> <tr> <td><?php echo app('translator')->get('Ledger::labels.cheque.cheque_date'); ?></td> <td><?php echo e($record->getProperty('cheque_date')); ?></td> </tr> </table> <?php endif; ?> </div> </div> <div class="col-md-8"> <div class="table-responsive"> <table class="table color-table dark-table table table-hover table-striped table-condensed"> <thead> <tr> <th><?php echo app('translator')->get(trans('Ledger::attributes.record.item')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.record.price')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.record.quantity')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.record.amount')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.record.notes')); ?></th> </tr> </thead> <tbody> <?php $__empty_1 = true; $__currentLoopData = $record->items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <tr> <td><?php echo e($item->item->name); ?></td> <td><?php echo e($item->price); ?></td> <td><?php echo e($item->quantity); ?></td> <td><?php echo e($item->amount); ?></td> <td><?php echo e($item->notes); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <tr> <td colspan="5" class="text-center"> <?php echo app('translator')->get('Ledger::labels.no_data'); ?> </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> <?php /**PATH /home/corals/ledger.corals.io/Corals/modules/Ledger/resources/views/records/show.blade.php ENDPATH**/ ?>