diff --git a/app/Http/Requests/AssetRequest.php b/app/Http/Requests/AssetRequest.php index 082320e6ba2f..65219f54088d 100644 --- a/app/Http/Requests/AssetRequest.php +++ b/app/Http/Requests/AssetRequest.php @@ -27,6 +27,9 @@ public function authorize() */ public function rules() { + // Below, asset_tag is duplicated here and in the model, largely because + // the functional tests will fail because of the way Form Requests work in + // Laravel. $rules = [ 'asset_tag' => 'required|min:1|max:255|unique_undeleted', 'name' => 'max:255|nullable', @@ -46,7 +49,7 @@ public function rules() ]; $settings = \App\Models\Setting::getSettings(); - + if ($this->request->get('model_id') != '') { $model = AssetModel::find($this->request->get('model_id'));