@extends('templates.layouts.base') @section('content')

{{$page->lang()->title }}

{{$page->lang()->title}}


@if(count($cart->lines)) {{Form::open()}} @foreach($cart->lines as $cline) @endforeach
{{App\Libraries\Fnx::translate('shop_product_name')}} {{App\Libraries\Fnx::translate('shop_price')}} {{App\Libraries\Fnx::translate('shop_quantity')}} {{App\Libraries\Fnx::translate('shop_total')}}
{{$cline->item->product->lang()->title}} @if(count($cline->item->product->variants) > 1) {{$cline->item->lang()->title}} @endif {{App\Libraries\Fnx::printPrice($cline->item->withoutTaxes())}}
{{App\Libraries\Fnx::printPrice($cline->item->withoutTaxes()*$cline->quantity)}}
@if($checkoutpage) {{$checkoutpage->lang()->title}} @endif
{{Form::close()}} @else

Carrito vacio

@endif
@if(count($cart->lines))

{{App\Libraries\Fnx::translate('cart')}} {{App\Libraries\Fnx::translate('totals')}}

{{App\Libraries\Fnx::translate('subtotal')}} {{App\Libraries\Fnx::printPrice($subtotal)}}
@endif

@stop