Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
api.meumercado.app
/
storage
/
framework
/
views
/
Editing: 01a461cbbebe1d853fc5f3c0fa55b34ab2686463.php
<style> </style> <div class="product-card card" onclick="quickView('<?php echo e($product->id); ?>')" style="cursor: pointer;"> <div class="card-header inline_product clickable p-0" style="height:134px;width:100%;overflow:hidden;"> <div class="d-flex align-items-center justify-content-center d-block"> <img src="<?php echo e(asset('storage/app/public/product')); ?>/<?php echo e(json_decode($product['image'], true)[0]); ?>" onerror="this.src='<?php echo e(asset('public/assets/admin/img/160x160/img2.jpg')); ?>'" style="width: 100%; border-radius: 5%;"> </div> </div> <div class="card-body inline_product text-center p-1 clickable" style="height:3.5rem; max-height: 3.5rem"> <div style="position: relative;" class="product-title1 text-dark font-weight-bold"> <?php echo e(Str::limit($product['name'], 15)); ?> </div> <div class="justify-content-between text-center"> <div class="product-price text-center"> <?php echo e(Helpers::set_symbol($product['price']- \App\CentralLogics\Helpers::discount_calculate($product, $product['price']))); ?> <?php if($product->discount > 0): ?> <strike style="font-size: 12px!important;color: grey!important;"> <?php echo e(Helpers::set_symbol($product['price'])); ?> </strike><br> <?php endif; ?> </div> </div> </div> </div> <?php /**PATH /home2/meumer25/api.meumercado.app/resources/views/admin-views/pos/_single_product.blade.php ENDPATH**/ ?>
Save
Cancel