Viewing file: RefundProcessRequest.php (1.08 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Modules\Refund\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RefundProcessRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'refund_id' => 'required|numeric|exists:refunds,id',
'note' => 'required|string|min:2|max:1000'
];
}
/**
* Get custom attributes for validator errors.
*
* @return array
*/
public function attributes()
{
return [
'note' => __('Message'),
];
}
/**
* Prepare the data for validation.
*
* @return void
*/
protected function prepareForValidation()
{
$this->merge([
'refund_id' => $this->id ?? $this->refund_id,
]);
}
}
|