@if(isset($order['items'])) @foreach($order['items'] as $item)
{{$item['quantity']}} X {{$item['itemName']}}

{{ $item['itemDescription'] }}

{{ $selectedCountry->currency->isSymbolAfterAmount ? round($item['itemPrice'], $selectedCountry->currency->decimalPlaces) . ' ' . $selectedCountry->currency->symbol : $selectedCountry->currency->symbol . ' ' . round($item['itemPrice'], $selectedCountry->currency->decimalPlaces) }}
@endforeach @endif

Totali

Delivery {{ $selectedCountry->currency->isSymbolAfterAmount ? round($order['transportCost'], $selectedCountry->currency->decimalPlaces) . ' ' . $selectedCountry->currency->symbol : $selectedCountry->currency->symbol . ' ' . round($order['transportCost'], $selectedCountry->currency->decimalPlaces) }}

Totali për të paguar {{ $selectedCountry->currency->isSymbolAfterAmount ? round(($order ? $order['total'] : 0), $selectedCountry->currency->decimalPlaces) . ' ' . $selectedCountry->currency->symbol : $selectedCountry->currency->symbol . ' ' . round($order ? $order['total'] : 0, $selectedCountry->currency->decimalPlaces) }}