diff --git a/config/permissions.php b/config/permissions.php
index 366590e8c7..0b65a4e26b 100644
--- a/config/permissions.php
+++ b/config/permissions.php
@@ -648,7 +648,7 @@ return [
[
'permission' => 'self.view_purchase_cost',
'label' => 'View Purchase-Cost Column',
- 'note' => 'This user can see the purchase cost column of assets assigned to them.',
+ 'note' => 'This user can see the purchase cost column of items assigned to them.',
'display' => true,
],
diff --git a/resources/views/account/view-assets.blade.php b/resources/views/account/view-assets.blade.php
index e333a72625..b77bddcf0d 100755
--- a/resources/views/account/view-assets.blade.php
+++ b/resources/views/account/view-assets.blade.php
@@ -536,7 +536,9 @@
@@ -544,9 +546,11 @@
@foreach ($user->accessories as $accessory)
{{ trans('general.name') }}
- {{ trans('general.purchase_cost') }}
+ @can('self.view_purchase_cost')
+ {{ trans('general.purchase_cost') }}
+ @endcan