diff --git a/resources/views/purchases/bills/show.blade.php b/resources/views/purchases/bills/show.blade.php
index 64df6404d..997e1309f 100644
--- a/resources/views/purchases/bills/show.blade.php
+++ b/resources/views/purchases/bills/show.blade.php
@@ -340,7 +340,7 @@
@foreach($bill->items as $bill_item)
@stack('name_td_start')
-
+ |
{{ $bill_item->name }}
@if (!empty($bill_item->item->description))
{!! \Illuminate\Support\Str::limit($bill_item->item->description, 500) !!}
diff --git a/resources/views/sales/invoices/show.blade.php b/resources/views/sales/invoices/show.blade.php
index 75d8eba1b..de56bd2c6 100644
--- a/resources/views/sales/invoices/show.blade.php
+++ b/resources/views/sales/invoices/show.blade.php
@@ -345,7 +345,7 @@
@stack('name_th_start')
- {{ trans_choice($text_override['items'], 2) }} |
+ {{ trans_choice($text_override['items'], 2) }} |
@stack('name_th_end')
@stack('quantity_th_start')
@@ -363,7 +363,7 @@
@foreach($invoice->items as $invoice_item)
@stack('name_td_start')
-
+ |
{{ $invoice_item->name }}
@if (!empty($invoice_item->item->description))
{!! \Illuminate\Support\Str::limit($invoice_item->item->description, 500) !!}
| |