![]() 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/ |
<?php if($record->items->isNotEmpty()): ?> <div class="table-responsive"> <table class="table table-striped table-condensed"> <thead class="table-light"> <tr> <th class="w-50"><?php echo app('translator')->get(trans('Ledger::attributes.item.name')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.item.price')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.item.quantity')); ?></th> <th><?php echo app('translator')->get(trans('Ledger::attributes.item.amount')); ?></th> <th class="w-25"><?php echo app('translator')->get(trans('Ledger::attributes.item.notes')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $record->items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($item->item->name); ?></td> <td><?php echo e($item->present('price')); ?></td> <td><?php echo e($item->present('quantity')); ?></td> <td><?php echo e($item->present('amount')); ?></td> <td style="max-width: 300px;"><?php echo e($item->notes); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> <?php /**PATH /home/corals/ledger.corals.io/Corals/modules/Ledger/resources/views/partials/recordItemsShow.blade.php ENDPATH**/ ?>