37 lines
860 B
PHP
37 lines
860 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests\Order;
|
||
|
|
|
||
|
|
use App\Models\Orders\Order;
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
use Illuminate\Validation\Rule;
|
||
|
|
|
||
|
|
class UpdateOrderStatusRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'status' => ['required', Rule::in([
|
||
|
|
Order::STATUS_DRAFT,
|
||
|
|
Order::STATUS_CONFIRMED,
|
||
|
|
Order::STATUS_IN_PROGRESS,
|
||
|
|
Order::STATUS_COMPLETED,
|
||
|
|
Order::STATUS_CANCELLED,
|
||
|
|
])],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function messages(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'status.required' => __('validation.required', ['attribute' => '상태']),
|
||
|
|
'status.in' => __('validation.in', ['attribute' => '상태']),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|