Answers for "non property"

0

non property

<div class="col-lg col-4 order-1 order-lg-0 my-3 my-lg-0">

                                                <span class="opacity-60 fs-12 d-block d-lg-none">{{ translate('Price')}}</span>

                                                <span class="fw-600 fs-16">{{ single_price($cartItem['price']) }}</span>

                                            </div>

                                            <div class="col-lg col-4 order-2 order-lg-0 my-3 my-lg-0">

                                                <span class="opacity-60 fs-12 d-block d-lg-none">{{ translate('Tax')}}</span>

                                                <span class="fw-600 fs-16">{{ single_price($cartItem['tax']) }}</span>

                                            </div>


                                            <div class="col-lg col-6 order-4 order-lg-0">

                                                @if($cartItem['digital'] != 1 && $product->auction_product == 0)

                                                    <div class="row no-gutters align-items-center aiz-plus-minus mr-2 ml-0">

                                                        <button class="btn col-auto btn-icon btn-sm btn-circle btn-light" type="button" data-type="minus" data-field="quantity[{{ $cartItem['id'] }}]">

                                                            <i class="las la-minus"></i>

                                                        </button>

                                                        <input type="number" name="quantity[{{ $cartItem['id'] }}]" class="col border-0 text-center flex-grow-1 fs-16 input-number" placeholder="1" value="{{ $cartItem['quanntity'] }}" min="{{ $product->min_q

                                                        <button class="btn col-auto btn-icon btn-sm btn-circle btn-light" type="button" data-type="plus" data-field="quantity[{{ $cartItem['id'] }}]">

                                                            <i class="las la-plus"></i>

                                                        </button>

                                                    </div>

                                                @elseif($product->auction_product == 1)

                                                    <span class="fw-600 fs-16">1</span>

                                                @endif

                                            </div>

                                            <div class="col-lg col-4 order-3 order-lg-0 my-3 my-lg-0">

                                                <span class="opacity-60 fs-12 d-block d-lg-none">{{ translate('Total')}}</span>

                                                <span class="fw-600 fs-16 text-primary">{{ single_price(($cartItem['price'] + $cartItem['tax']) * $cartItem['quantity']) }}</span>

                                            </div>

                                            <div class="col-lg-auto col-6 order-5 order-lg-0 text-right">

                                                <a href="javascript:void(0)" onclick="removeFromCartView(event, {{ $cartItem['id'] }})" class="btn btn-icon btn-sm btn-soft-primary btn-circle">

                                                    <i class="las la-trash"></i>
Posted by: Guest on October-27-2021

Code answers related to "non property"

Browse Popular Code Answers by Language