From 842e8944d2c4a8738bb4b34ec8f5d3e37da3e8a2 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 18 Jul 2023 14:43:19 +0200 Subject: [PATCH] wait #6122 @0:20 --- app/Models/Client.php | 2 +- resources/styles/components/products.styl | 10 +++------- resources/views/partials/product-link.blade.php | 6 +++--- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/app/Models/Client.php b/app/Models/Client.php index b1b2025..610f324 100644 --- a/app/Models/Client.php +++ b/app/Models/Client.php @@ -84,7 +84,7 @@ class Client extends CubistMagicAbstractModel ]); $this->addField(['name' => 'discount', - 'label' => 'Remise', + 'label' => 'Code discount', 'type' => 'select_from_array', 'options' => ['A' => 'A','B' => 'B','C' => 'C','D' => 'D','E' => 'E'], 'allows_null' => false, diff --git a/resources/styles/components/products.styl b/resources/styles/components/products.styl index 56b4187..7d23164 100644 --- a/resources/styles/components/products.styl +++ b/resources/styles/components/products.styl @@ -153,10 +153,6 @@ height: 21px overflow: hidden -.product-description-container - h3 - font-weight 500 - .product-img-holder @apply bg-white relative pb-100p @@ -183,9 +179,9 @@ .product-highlights font-size 15px .product-description-container - * - font-family: 'Barlow', Sans-Serif h3 - font-weight: 700 + font-weight 700 + .label + font-weight 500 .price font-weight 600 diff --git a/resources/views/partials/product-link.blade.php b/resources/views/partials/product-link.blade.php index 8443fb7..2fcd9c3 100644 --- a/resources/views/partials/product-link.blade.php +++ b/resources/views/partials/product-link.blade.php @@ -23,7 +23,7 @@
+ -->

{{ $product->get('reference') }} @@ -35,10 +35,10 @@
@if($product->basic_selling_price && $product->json) @php($options = true) -

{{ __('Produit configurable') }}

+

{{ __('Produit configurable') }}

{{ __('A partir de :').' '. $price }}€ HT

@elseif($product->basic_selling_price && !$product->json) -

{{ __('Prix catalogue :').' '.$product->basic_selling_price }}€ HT

+

{{ __('Prix catalogue :').' '.$product->basic_selling_price }}€ HT

{{ __('Votre prix :').' '. $price }}€ HT

@endif
-- 2.39.5