Shopping cart
You have {{$unites_in_baskets}} item in your cart
@foreach ($baskets as $basket)
{{$basket->product->title}}
{!!$basket->product->sub_title!!}
@if($basket->order_formular)
View questionnaire
@endif
@if($basket->order_formular && $basket->order_formular->formular->discount)
@php
$percent = (($basket->price_product * $basket->quantity) * $basket->order_formular->formular->discount) / 100;
$amount = $basket->price_product * $basket->quantity - $percent;
@endphp
${{$amount}} with {{$basket->order_formular->formular->discount}}% discount
@else
${{$basket->price_product * $basket->quantity}}
@endif
@endforeach
{{--
H2-4D
The world's first dedicated 16-channel Dolby ATMOSĀ® digital audio decoder
HDMI-2A
The world's first 8 channel HDMI to AES/EBU digital audio converter
AES-2H
The world's first 8 channel AES/EBU to HDMI digital audio converter
--}}
@if($baskets && count($baskets) > 0)