+
{{ $role->display_name }}
@endforeach
diff --git a/resources/views/components/documents/template/classic.blade.php b/resources/views/components/documents/template/classic.blade.php
index 39c810aa5..004f07041 100644
--- a/resources/views/components/documents/template/classic.blade.php
+++ b/resources/views/components/documents/template/classic.blade.php
@@ -204,33 +204,33 @@
@stack('name_th_start')
@if (!$hideItems || (!$hideName && !$hideDescription))
- {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
+ {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
@endif
@stack('name_th_end')
@stack('quantity_th_start')
@if (!$hideQuantity)
- {{ trans($textQuantity) }} |
+ {{ trans($textQuantity) }} |
@endif
@stack('quantity_th_end')
@stack('price_th_start')
@if (!$hidePrice)
- {{ trans($textPrice) }} |
+ {{ trans($textPrice) }} |
@endif
@stack('price_th_end')
@if (!$hideDiscount)
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
@stack('discount_td_start')
- {{ trans('invoices.discount') }} |
+ {{ trans('invoices.discount') }} |
@stack('discount_td_end')
@endif
@endif
@stack('total_th_start')
@if (!$hideAmount)
- {{ trans($textAmount) }} |
+ {{ trans($textAmount) }} |
@endif
@stack('total_th_end')
diff --git a/resources/views/components/documents/template/default.blade.php b/resources/views/components/documents/template/default.blade.php
index 1b85ae7d0..25e11b115 100644
--- a/resources/views/components/documents/template/default.blade.php
+++ b/resources/views/components/documents/template/default.blade.php
@@ -189,33 +189,33 @@
@stack('name_th_start')
@if (!$hideItems || (!$hideName && !$hideDescription))
- {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
+ {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
@endif
@stack('name_th_end')
@stack('quantity_th_start')
@if (!$hideQuantity)
- {{ trans($textQuantity) }} |
+ {{ trans($textQuantity) }} |
@endif
@stack('quantity_th_end')
@stack('price_th_start')
@if (!$hidePrice)
- {{ trans($textPrice) }} |
+ {{ trans($textPrice) }} |
@endif
@stack('price_th_end')
@if (!$hideDiscount)
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
@stack('discount_td_start')
- {{ trans('invoices.discount') }} |
+ {{ trans('invoices.discount') }} |
@stack('discount_td_end')
@endif
@endif
@stack('total_th_start')
@if (!$hideAmount)
- {{ trans($textAmount) }} |
+ {{ trans($textAmount) }} |
@endif
@stack('total_th_end')
diff --git a/resources/views/components/documents/template/line-item.blade.php b/resources/views/components/documents/template/line-item.blade.php
index 541af42f6..bd8e48f7b 100644
--- a/resources/views/components/documents/template/line-item.blade.php
+++ b/resources/views/components/documents/template/line-item.blade.php
@@ -1,7 +1,7 @@
@stack('name_td_start')
@if (! $hideItems || (! $hideName && ! $hideDescription))
-
+ |
@if (! $hideName)
{{ $item->name }}
@endif
@@ -22,13 +22,13 @@
@stack('quantity_td_start')
@if (! $hideQuantity)
- | {{ $item->quantity }} |
+ {{ $item->quantity }} |
@endif
@stack('quantity_td_end')
@stack('price_td_start')
@if (! $hidePrice)
- @money($item->price, $document->currency_code, true) |
+ @money($item->price, $document->currency_code, true) |
@endif
@stack('price_td_end')
@@ -36,9 +36,9 @@
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
@stack('discount_td_start')
@if ($item->discount_type === 'percentage')
- {{ $item->discount }} |
+ {{ $item->discount }} |
@else
- @money($item->discount, $document->currency_code, true) |
+ @money($item->discount, $document->currency_code, true) |
@endif
@stack('discount_td_end')
@endif
@@ -46,7 +46,7 @@
@stack('total_td_start')
@if (! $hideAmount)
- @money($item->total, $document->currency_code, true) |
+ @money($item->total, $document->currency_code, true) |
@endif
@stack('total_td_end')
diff --git a/resources/views/components/documents/template/modern.blade.php b/resources/views/components/documents/template/modern.blade.php
index c4433e33e..6c9a3ea96 100644
--- a/resources/views/components/documents/template/modern.blade.php
+++ b/resources/views/components/documents/template/modern.blade.php
@@ -177,33 +177,33 @@
@stack('name_th_start')
@if (!$hideItems || (!$hideName && !$hideDescription))
- {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
+ {{ (trans_choice($textItems, 2) != $textItems) ? trans_choice($textItems, 2) : trans($textItems) }} |
@endif
@stack('name_th_end')
@stack('quantity_th_start')
@if (!$hideQuantity)
- {{ trans($textQuantity) }} |
+ {{ trans($textQuantity) }} |
@endif
@stack('quantity_th_end')
@stack('price_th_start')
@if (!$hidePrice)
- {{ trans($textPrice) }} |
+ {{ trans($textPrice) }} |
@endif
@stack('price_th_end')
@if (!$hideDiscount)
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
@stack('discount_td_start')
- {{ trans('invoices.discount') }} |
+ {{ trans('invoices.discount') }} |
@stack('discount_td_end')
@endif
@endif
@stack('total_th_start')
@if (!$hideAmount)
- {{ trans($textAmount) }} |
+ {{ trans($textAmount) }} |
@endif
@stack('total_th_end')
diff --git a/resources/views/components/index/default.blade.php b/resources/views/components/index/default.blade.php
index 30bf4bd65..d4fdeef9f 100644
--- a/resources/views/components/index/default.blade.php
+++ b/resources/views/components/index/default.blade.php
@@ -1,5 +1,5 @@
-
+
{{ $icon }}
diff --git a/resources/views/components/index/disable.blade.php b/resources/views/components/index/disable.blade.php
index d32a58c4a..3dc70aab6 100644
--- a/resources/views/components/index/disable.blade.php
+++ b/resources/views/components/index/disable.blade.php
@@ -1,5 +1,5 @@
-
+
{{ $icon }}
diff --git a/resources/views/components/reports/detail/table/row.blade.php b/resources/views/components/reports/detail/table/row.blade.php
index 38ac57180..f5823c7ca 100644
--- a/resources/views/components/reports/detail/table/row.blade.php
+++ b/resources/views/components/reports/detail/table/row.blade.php
@@ -41,10 +41,10 @@
@if ($row_total = array_sum($parent_row_values))
@if (isset($parent_id))
-
+ |
@else
|
-
+ |
@endif
{{ $class->row_names[$table_key][$id] }}
diff --git a/resources/views/components/transactions/template/default.blade.php b/resources/views/components/transactions/template/default.blade.php
index f6cdda636..02f33a471 100644
--- a/resources/views/components/transactions/template/default.blade.php
+++ b/resources/views/components/transactions/template/default.blade.php
@@ -183,7 +183,7 @@
@if (! $hideContactInfo)
|
-
+ |
{{ trans($textContactInfo) }}
|
@@ -276,7 +276,7 @@
-
+ |
@if (!$hideRelatedDocumentNumber)
{{ trans_choice($textRelatedDocumentNumber, 1) }}
@endif
@@ -294,7 +294,7 @@
@endif
- |
+ |
@if (!$hideRelatedDocumentAmount)
{{ trans($textRelatedDocumentAmount) }}
@endif
@@ -309,7 +309,7 @@
|
-
+ |
@if (!$hideRelatedDocumentNumber)
{{ $transaction->document->document_number }}
@@ -327,7 +327,7 @@
|
@endif
-
+ |
@if (!$hideRelatedDocumentAmount)
@money($transaction->document->amount, $transaction->document->currency_code, true)
@endif
diff --git a/resources/views/reports/profit_loss/content/footer.blade.php b/resources/views/reports/profit_loss/content/footer.blade.php
index 59c076e3d..f58f632fa 100644
--- a/resources/views/reports/profit_loss/content/footer.blade.php
+++ b/resources/views/reports/profit_loss/content/footer.blade.php
@@ -2,7 +2,7 @@
-
+ |
{{ trans('reports.net_profit') }}
|
diff --git a/resources/views/reports/profit_loss/content/header.blade.php b/resources/views/reports/profit_loss/content/header.blade.php
index 83f8c3066..284cd78ae 100644
--- a/resources/views/reports/profit_loss/content/header.blade.php
+++ b/resources/views/reports/profit_loss/content/header.blade.php
@@ -2,7 +2,7 @@
- |
+ |
@foreach($class->dates as $date)
diff --git a/resources/views/reports/profit_loss/table/footer.blade.php b/resources/views/reports/profit_loss/table/footer.blade.php
index 887e4036f..d62bc329d 100644
--- a/resources/views/reports/profit_loss/table/footer.blade.php
+++ b/resources/views/reports/profit_loss/table/footer.blade.php
@@ -2,7 +2,7 @@
|
-
+ |
{{ trans_choice('general.totals', 1) }}
|
diff --git a/resources/views/reports/tax_summary/content/header.blade.php b/resources/views/reports/tax_summary/content/header.blade.php
index 9d59c3c25..34be3ec76 100644
--- a/resources/views/reports/tax_summary/content/header.blade.php
+++ b/resources/views/reports/tax_summary/content/header.blade.php
@@ -2,7 +2,7 @@
- |
+ |
@foreach($class->dates as $date)
diff --git a/resources/views/reports/tax_summary/table/footer.blade.php b/resources/views/reports/tax_summary/table/footer.blade.php
index b9b5ddefb..10ccf6a95 100644
--- a/resources/views/reports/tax_summary/table/footer.blade.php
+++ b/resources/views/reports/tax_summary/table/footer.blade.php
@@ -2,7 +2,7 @@
|
-
+ |
{{ trans('reports.net') }}
|
|