@extends('layouts.app') @section('body-class', 'page-cart') @section('content') @push('header') @endpush @hookinsert('cart.top')
@if (session()->has('errors')) @endif @if (session('error')) @endif @if (session('success')) @endif
@hookinsert('cart.table.before')
{{ __('front/cart.product') }} {{ __('front/cart.price') }} {{ __('front/cart.quantity') }} {{ __('front/cart.subtotal') }}
@{{ item.product_name }}
@{{ item.sku_code }} {{ __('front/common.stock_not_enough') }} @{{ item.item_type_label }}
@{{ item.price_format }}
@{{ item.price_format }}
@{{ item.quantity }}
@{{ item.subtotal_format }}
@hookinsert('cart.table.after')
{{ __('front/cart.cart_total') }}
  • {{ __('front/cart.selected') }} @{{ total }}
  • {{ __('front/cart.total') }}@{{ amount_format }}
@if(!system_setting('disable_online_order')) @endif

{{ __('front/cart.empty_cart') }}

{{ __('front/cart.continue') }}
@hookinsert('cart.bottom') @endsection @push('footer') @endpush