@forelse ($carts as $key => $product)
{{ $product->product->getTranslation('title') }} |
|
{{ single_price($product->price) }}
{{ currency_sympol()['symbol'] }}
|
@if ($product->product->advanced_product == 'digital_cards')
{{ $product->quantity }}
|
{{ single_price($product->price * $product->quantity) }}
{{ currency_sympol()['symbol'] }}
|
@else
----
|
{{ single_price($product->price) }}
{{ currency_sympol()['symbol'] }}
|
@endif
|
@empty
@endforelse