36 lines
976 B
PHP
36 lines
976 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
/**
|
|
* 管理员查看玩家注单列表请求。
|
|
*
|
|
* @see AdminPlayerTicketItemsIndexController
|
|
*/
|
|
final class AdminPlayerTicketItemsRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, array<int, mixed>>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'page' => ['sometimes', 'integer', 'min:1'],
|
|
'per_page' => ['sometimes', 'integer', 'min:1', 'max:50'],
|
|
'draw_no' => ['sometimes', 'nullable', 'string', 'max:32'],
|
|
'status' => ['sometimes'],
|
|
'status.*' => ['string', 'max:32'],
|
|
'number' => ['sometimes', 'nullable', 'string', 'max:64'],
|
|
'start_date' => ['sometimes', 'nullable', 'date_format:Y-m-d'],
|
|
'end_date' => ['sometimes', 'nullable', 'date_format:Y-m-d'],
|
|
];
|
|
}
|
|
}
|