@extends('templates.layouts.base')
@section('content')
{{$page->lang()->title }}
| {{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
|
|||||
| {{App\Libraries\Fnx::translate('subtotal')}} | {{App\Libraries\Fnx::printPrice($subtotal)}} |
|---|