KUJUNTI.ID MINISH3LL
Path : /var/www/html/jewelry-pos/storage/framework/views/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : /var/www/html/jewelry-pos/storage/framework/views/ec6ed3bf78f9a5b541ec610fd842abe4.php


<?php $__env->startSection('content'); ?>
    <div class="" style="display: flex;justify-content: center;width: 100%;height: 100%;background-color: #eee;">
        
        
        
        <div class="" style="height: 100%;width: 100%;">
            <div class="text-center bg-white print" id="print" style="width: 100%;height: 100%;margin: auto;color: rebeccapurple">
                
                
                
                
                
                <div class="row" style="display: flex;justify-content: center;align-items: center;color: rebeccapurple;">
                    <div class="col-sm-6 col-xl-6 p-2" style="border: 1px solid rebeccapurple;display: flex;justify-content: center;align-items: center;">
                        <h1 style="font-weight: bold;font-size: 24px"><?php echo e($settings_->shop_name); ?></h1>
                    </div>
                </div>
                <div class="row m-2">
                    <div class="col-sm-6 col-xl-6 text-left mt-4" style="font-size: 14px;">
                        <?php echo e(__('message.cashier')); ?> : <b><?php echo e(Auth::user()->name); ?></b>
                    </div>
                    <div class="col-sm-6 col-xl-6 text-right mt-4" style="font-size: 14px;">
                        <?php echo e(__('message.invoice date')); ?> : <b><?php echo e(now()->toDateTimeString()); ?></b>
                    </div>
                </div>
                <div class="row m-2">
                    <div class="col-sm-8 col-xl-8 text-left mt-4" style="font-size: 14px">
                        <?php echo e(__('message.location')); ?> : <b><?php echo e($settings_->address); ?></b>
                    </div>
                    <div class="col-sm-4 col-xl-4 text-right mt-4" style="font-size: 14px;">
                        <?php echo e(__('message.phone number')); ?> : <b><?php echo e($settings_->phone); ?></b>
                    </div>
                </div>
                <div class="row m-2 text-left">
                    <div class="col-sm-6 col-xl-6 mt-4">
                        <?php echo e(__('message.grn')); ?> : <b><?php echo e($q); ?></b>
                    </div>
                </div>
                <div class="row mt-4" style="display: flex;justify-content: center;align-items: center;color: rebeccapurple;">
                    <div class="col-sm-6 col-xl-12 p-2 text-center" style="display: flex;justify-content: center;align-items: center;">
                        <h1 style="font-weight: bold;border-bottom: 2px solid rebeccapurple;font-size: 18px" class=""><?php echo e(__('message.grn report')); ?></h1>
                    </div>
                </div>
                <?php if($check == 1): ?>
                    <div class="panel-container show">
                        <div class="d-flex flex-column h-100">
                            <div class="h-auto">
                                <table id="example" class="table table-bordered table-hover table-striped w-100">
                                    <thead class="bg-fusion-50 text-center">
                                    <tr>
                                        <th>#</th>
                                        <th><?php echo e(__('message.grn')); ?></th>
                                        <th><?php echo e(__('message.product category')); ?></th>
                                        <th class="text-center"><?php echo e(__('message.product name')); ?></th>
                                        <th class="text-center"><?php echo e(__('message.sales price')); ?></th>
                                        <th><?php echo e(__('message.qty')); ?></th>
                                        <th><?php echo e(__('message.cost')); ?></th>
                                        <th><?php echo e(__('message.wages')); ?></th>
                                        <th><?php echo e(__('message.original wages')); ?></th>
                                        <th><?php echo e(__('message.weight')); ?></th>
                                        <th><?php echo e(__('message.gold weight')); ?></th>
                                        <th><?php echo e(__('message.diamond size')); ?></th>
                                        <th class="text-center"><?php echo e(__('message.note')); ?></th>
                                        <th class="text-center"><?php echo e(__('message.user')); ?></th>
                                        <th class="text-center"><?php echo e(__('message.updated at')); ?></th>
                                    </tr>
                                    </thead>
                                    <tbody>
                                    <?php $__currentLoopData = $productQtyHistories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $productQtyHistory): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <tr class="text-center <?php if($productQtyHistory->qty<0): ?> inactive <?php endif; ?>">
                                            <td>
                                                <?php echo e($index+1); ?>

                                            </td>
                                            <td>
                                                <?php echo e($productQtyHistory->grn); ?>

                                            </td>
                                            <td>
                                                <?php echo e($productQtyHistory->product->productCategory->name??''); ?>

                                            </td>
                                            <td>
                                                <?php echo e($productQtyHistory->product->name??''); ?>

                                            </td>
                                            <td class="credit">
                                                <?php echo e(number_format($productQtyHistory->product->sellingPrice() , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                            </td>
                                            <td class="credit">
                                                <?php echo e(abs($productQtyHistory->qty)); ?>

                                            </td>
                                            <td class="credit">
                                                <?php echo e(number_format($productQtyHistory->product->sellingCost() , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                            </td>
                                            <td class="credit">
                                                <?php if($productQtyHistory->product->productCategory->fixed_price): ?>
                                                    <?php echo e(number_format($productQtyHistory->product->wages , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                                <?php else: ?>
                                                    <?php if($productQtyHistory->fixed_price): ?>
                                                        <?php echo e(number_format($productQtyHistory->product->wages , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                                    <?php else: ?>
                                                        <?php echo e(number_format($productQtyHistory->product->wages_in_weight , 2)); ?>

                                                    <?php endif; ?>
                                                <?php endif; ?>
                                            </td>
                                            <td class="credit">
                                                <?php if($productQtyHistory->product->productCategory->fixed_price): ?>
                                                    <?php echo e(number_format($productQtyHistory->product->original_wages , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                                <?php else: ?>
                                                    <?php if($productQtyHistory->product->fixed_price): ?>
                                                        <?php echo e(number_format($productQtyHistory->product->original_wages , 2)); ?> <?php echo e($currency_->currency_symbol); ?>

                                                    <?php else: ?>
                                                        <?php echo e(number_format($productQtyHistory->product->original_wages_in_weight , 2)); ?>

                                                    <?php endif; ?>
                                                <?php endif; ?>
                                            </td>
                                            <td class="credit">
                                                <?php echo e(number_format($productQtyHistory->product->weight ,2)); ?>

                                            </td>
                                            <td>
                                                <?php echo e(number_format($productQtyHistory->product->goldWeight() ,2)); ?>

                                            </td>
                                            <td>
                                                <?php echo $productQtyHistory->product->diamond_size; ?>

                                            </td>
                                            <td>
                                                <?php echo e($productQtyHistory->note??''); ?>

                                            </td>
                                            <td>
                                                <a href="<?php echo e(route('users.show' , $productQtyHistory->user_id)); ?>" class="text-dark">
                                                    <?php echo e($productQtyHistory->user->name??''); ?>

                                                </a>
                                            </td>
                                            <td>
                                                <?php echo e(date('d-m-Y  H-i-s' , strtotime($productQtyHistory->updated_at))); ?>

                                            </td>
                                        </tr>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                    </tbody>
                                </table>
                                <!-- datatable end -->
                            </div>
                        </div>
                    </div>
                <?php endif; ?>
                <div style="width: 100%;display: flex;justify-content: space-between;align-items: center">
                    <div class="text-center mt-4 ml-4 notPrint" style="width: 5%;; height: 50%;">
                        <a href="<?php echo e(route('grn-report.index')); ?>" id="back" name="back" class="btn-sm btn-danger mt-6 fw-bold notPrint" style="cursor: pointer;color: white;">Back</a>
                    </div>
                    <div class="text-center mt-4 mr-4 notPrint" style="width: 5%;; height: 50%;">
                        <a id="print" name="print" class="btn-sm btn-info mt-6 fw-bold notPrint" onclick="return print()" style="cursor: pointer;color: white;">Print</a>
                    </div>
                </div>
            </div>
        </div>
        
        
        
    </div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
    <script>
        window.print();
        setTimeout("closePrintView()", 1000);
        function closePrintView(){
            window.location.href = "<?php echo e(route('grn-report.index')); ?>?q=<?php echo e($q); ?>&paginate=<?php echo e($paginate); ?>";
        }
    </script>
    <script>
        $(document).ready(function() {
            $("#js-nav-menu").removeClass('active');
            $("#js-nav-menu li ul li").removeClass('active');
            // $("#menu_setup_list").addClass('active open');
            // $("#collapse_setup").addClass('collapse in')
            // $("#menu_product").addClass('active')
            $("#menu_expense_grn").addClass('active')
        })
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.admin-main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/jewelry-pos/resources/views/grn-reports/list.blade.php ENDPATH**/ ?>

© KUJUNTI.ID