user()->can('edit', $this->vendor); } public function rules() { /* Ensure we have a client name, and that all emails are unique*/ $rules['country_id'] = 'integer'; if ($this->number) { $rules['number'] = Rule::unique('vendors')->where('company_id', auth()->user()->company()->id)->ignore($this->vendor->id); } $rules['contacts.*.email'] = 'nullable|distinct'; $rules['currency_id'] = 'bail|sometimes|exists:currencies,id'; if($this->file('documents') && is_array($this->file('documents'))) $rules['documents.*'] = $this->file_validation; elseif($this->file('documents')) $rules['documents'] = $this->file_validation; if ($this->file('file') && is_array($this->file('file'))) { $rules['file.*'] = $this->file_validation; } elseif ($this->file('file')) { $rules['file'] = $this->file_validation; } return $rules; } public function messages() { return [ 'email' => ctrans('validation.email', ['attribute' => 'email']), 'name.required' => ctrans('validation.required', ['attribute' => 'name']), 'required' => ctrans('validation.required', ['attribute' => 'email']), ]; } public function prepareForValidation() { $input = $this->all(); if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) { $input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']); } if (array_key_exists('country_id', $input) && is_null($input['country_id'])) { unset($input['country_id']); } $input = $this->decodePrimaryKeys($input); $this->replace($input); } }