Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
resources
/
views
/
branch-views
/
pos
/
Editing: _single_product.blade.php
<style> </style> <div class="product-card card" onclick="quickView('{{$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="{{asset('storage/app/public/product')}}/{{json_decode($product['image'], true)[0]}}" onerror="this.src='{{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"> {{ Str::limit($product['name'], 15) }} </div> <div class="justify-content-between text-center"> <div class="product-price text-center"> {{ Helpers::set_symbol($product['price']- \App\CentralLogics\Helpers::discount_calculate($product, $product['price'])) }} @if($product->discount > 0) <strike style="font-size: 12px!important;color: grey!important;"> {{ Helpers::set_symbol($product['price']) }} </strike><br> @endif </div> </div> </div> </div>
Save
Cancel