mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
cc6f1cd585
Signed-off-by: snipe <snipe@snipe.net>
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\Category;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class StoreAssetModelRequest extends ImageUploadRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function prepareForValidation(): void
|
|
{
|
|
|
|
$this->category_type = Category::select('category_type')->find($this->category_id);
|
|
|
|
\Log::error('Category Type: '.$this->category_type);
|
|
|
|
$this->merge([
|
|
'model_category_type' => $this->category_type,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return array_merge(
|
|
['model_category_type' => 'required|in:asset'],
|
|
parent::rules(),
|
|
);
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
$messages = ['model_category_type.in' => 'The category must be an asset category, dummy.'];
|
|
return $messages;
|
|
}
|
|
}
|