@if($baskets && count($baskets) > 0)
@foreach ($baskets as $basket)
@if($basket->product->main_image) H1-D @endif

{{$basket->product->title}} x {{$basket->quantity}}

@if($basket->order_formular && $basket->order_formular->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}}
- ({{$basket->order_formular->formular->discount}}%) @else ${{$basket->price_product * $basket->quantity}} @endif
@endforeach
@else
No products in your Shopping cart, visit our products page
@endif