diff --git a/app/Models/Asset.php b/app/Models/Asset.php index 42c97a5cd7..03fa8a4457 100644 --- a/app/Models/Asset.php +++ b/app/Models/Asset.php @@ -403,7 +403,7 @@ class Asset extends Depreciable */ public function components() { - return $this->belongsToMany('\App\Models\Component', 'components_assets', 'asset_id', 'component_id')->withPivot('id', 'assigned_qty', 'created_at')->withTrashed(); + return $this->belongsToMany('\App\Models\Component', 'components_assets', 'asset_id', 'component_id')->withPivot('id', 'assigned_qty', 'created_at'); }