@extends('member.dashboard') @section('member-content')
| {{ __('member.order.order_product') }} | {{ __('member.order.order_quantity') }} | {{ __('member.order.order_price') }} | {{ __('member.order.order_subtotal') }} | |
|---|---|---|---|---|
@if($item->product && !$item->product->trashed())
{{-- Produit encore disponible --}}
@endif
|
{{ $item->product_name }}
{{ $item->product_sku }}
@if($item->product_options && is_array($item->product_options))
@foreach($item->product_options as $option => $value)
• {{ $value }}
@endforeach
@endif
@if($item->discount_amount > 0)
Remise:
@if($item->discount_type === 'fixed')
-{{ number_format($item->discount_amount_in_euros, 2) }}€
@else
-{{ $item->discount_amount }}%
@endif
@endif
|
{{ $item->quantity }}
@if($item->is_returned && $item->returned_quantity > 0)
{{ $item->returned_quantity }} retourné(s)
@endif
|
@if($item->discount_amount > 0)
{{ number_format($item->unit_price_in_euros, 2) }} €
{{ number_format($item->discounted_unit_price, 2) }} €
@else
{{ number_format($item->unit_price_in_euros, 2) }} €
@endif
|
{{ number_format($item->total_price_with_shipping, 2) }} € |