diff --git a/resources/views/Admin/Shop/Offers/partials/tariff.blade.php b/resources/views/Admin/Shop/Offers/partials/tariff.blade.php
index 68131e16..97b69bc4 100644
--- a/resources/views/Admin/Shop/Offers/partials/tariff.blade.php
+++ b/resources/views/Admin/Shop/Offers/partials/tariff.blade.php
@@ -1,34 +1,29 @@
-
-
- {{ $tariff['ref'] ?? null }}
-
-
- {{ $tariff['name'] ?? null }}
-
-
-
-
-
- @foreach (($tariff['price_lists'] ?? []) as $price_list)
- {{ $price_list['sale_channel']['name'] }}
- {{ $price_list['name'] }}
- @if ($price_list['price_list_values'] ?? false)
-
-
-
- | Seuil |
- Prix |
-
-
- @foreach (($price_list['price_list_values'] ?? []) as $price_value)
-
- | {{ $price_value['quantity'] }} |
- {{ $price_value['price'] }} |
-
- @endforeach
-
- @endif
- @endforeach
-
-
+@component('components.card', ['title' => $tariff['name'] ?? null ])
+ @foreach (($tariff['price_lists'] ?? []) as $price_list)
+
+
+
Canal de vente : {{ $price_list['sale_channel']['name'] }}
+
Nom de liste de prix : {{ $price_list['name'] }}
+ @if ($price_list['price_list_values'] ?? false)
+
+
+
+ | Seuil |
+ Prix HT |
+ Prix TTC |
+
+
+ @foreach (($price_list['price_list_values'] ?? []) as $price_value)
+
+ | {{ $price_value['quantity'] }} |
+ {{ $price_value['price'] }} |
+ {{ $price_value['price_taxed'] }} |
+
+ @endforeach
+
+ @endif
+
+
+ @endforeach
+@endcomponent
diff --git a/resources/views/Admin/Shop/Offers/partials/variation.blade.php b/resources/views/Admin/Shop/Offers/partials/variation.blade.php
index 546edcfd..b1d8e922 100644
--- a/resources/views/Admin/Shop/Offers/partials/variation.blade.php
+++ b/resources/views/Admin/Shop/Offers/partials/variation.blade.php
@@ -1,8 +1,6 @@
-
+
-
- {{ $variation['name'] }}
-
+
{{ $variation['name'] }}