diff --git a/resources/views/pdf/devis.blade.php b/resources/views/pdf/devis.blade.php
index 75e2290..2b56929 100644
--- a/resources/views/pdf/devis.blade.php
+++ b/resources/views/pdf/devis.blade.php
@@ -208,9 +208,9 @@
{{ $item['designation'] ?? '' }}
{{ $item['type'] ?? '' }}
- {{ number_format($item['prix_unitaire'] ?? 0, 2, ',', "\u{202F}") }} € |
+ {{ number_format($item['prix_unitaire'] ?? 0, 2, ',', "\xc2\xa0") }} € |
{{ $item['quantite'] ?? 0 }} |
- {{ number_format(($item['quantite'] ?? 0) * ($item['prix_unitaire'] ?? 0), 2, ',', "\u{202F}") }} € |
+ {{ number_format(($item['quantite'] ?? 0) * ($item['prix_unitaire'] ?? 0), 2, ',', "\xc2\xa0") }} € |
@endforeach
@@ -227,15 +227,15 @@
| TOTAL HT : |
- {{ number_format($devis->total_ht, 2, ',', "\u{202F}") }} € |
+ {{ number_format($devis->total_ht, 2, ',', "\xc2\xa0") }} € |
| TVA ({{ $devis->tva_rate }}%) : |
- {{ number_format($devis->total_ttc - $devis->total_ht, 2, ',', "\u{202F}") }} € |
+ {{ number_format($devis->total_ttc - $devis->total_ht, 2, ',', "\xc2\xa0") }} € |
| TOTAL TTC : |
- {{ number_format($devis->total_ttc, 2, ',', "\u{202F}") }} € |
+ {{ number_format($devis->total_ttc, 2, ',', "\xc2\xa0") }} € |