@extends('front.layout') @section('title') {{__('Cart')}} @endsection @section('css') @endsection @section('content')
@if(count($cart_products)) @foreach($cart_products as $product) @endforeach @else @endif
{{__('Product')}} {{__('Description')}} {{__('Price')}} {{__('Stock')}}
{{$product->name}}
{{$product->description}} @if($product->offer>0 && $product->offer_valid){{formated_price($product->offer)}} @else {{formated_price($product->new_price)}} @endif {{$product->stock}} id)}}" class="delete_cart_item">
{{__('Cart empty')}}
  • {{__('Total')}}

    {{formated_price(calculateCart())}}

@if(count($cart_products)) {{__('Checkout')}} @endif
@endsection @section('scripts') @include('front.pages.cart.cart_js') @endsection