![]() 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 $__env->startSection('content_header'); ?> <?php $__env->startComponent('components.content_header'); ?> <?php $__env->slot('page_title'); ?> <?php echo e($title_singular); ?> <?php $__env->endSlot(); ?> <?php $__env->slot('breadcrumb'); ?> <?php echo e(Breadcrumbs::render('ledger-account-show')); ?> <?php $__env->endSlot(); ?> <?php echo $__env->renderComponent(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-md-3"> <?php $__env->startComponent('components.box'); ?> <?php $__env->slot('box_title'); ?> <?php echo app('translator')->get('Ledger::labels.account.account_details'); ?> <?php $__env->endSlot(); ?> <div class="table-responsive"> <table class="table table-striped"> <tbody> <tr> <th><?php echo app('translator')->get('Ledger::attributes.account.name'); ?></th> <td><?php echo $account->present('name'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('Ledger::attributes.account.email'); ?></th> <td><?php echo $account->present('email'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('Ledger::attributes.account.phone'); ?></th> <td><?php echo $account->present('phone'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('Ledger::attributes.account.address'); ?></th> <td><?php echo $account->present('address'); ?></td> </tr> </tbody> </table> </div> <?php echo $__env->renderComponent(); ?> </div> <div class="col-md-9"> <?php $__env->startComponent('components.box'); ?> <?php $__env->slot('box_title'); ?> <?php echo app('translator')->get('Ledger::labels.record.records_details'); ?> <?php $__env->endSlot(); ?> <?php $__env->slot('box_actions'); ?> <?php echo CoralsForm::link("/ledger/accounts/$account->hashed_id/account-report?".http_build_query(request()->all()), '<i class="fa fa-print"></i> Print',['class'=>'btn btn-sm btn-primary','target'=>'_blank']); ?> <?php $__env->endSlot(); ?> <?php echo $__env->make('Ledger::partials.DateForm', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php echo $__env->make('Ledger::partials.recordDetailsForAccount',['account_id'=>$account->id], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php echo $__env->renderComponent(); ?> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.crud.show', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/ledger.corals.io/Corals/modules/Ledger/resources/views/accounts/show.blade.php ENDPATH**/ ?>