|string> */ public function rules(): array { return [ 'live_status' => [ 'nullable', 'string', Rule::in(['pending', 'approved', 'rejected', 'none', 'expired', 'all']), ], 'per_page' => ['nullable', 'integer', 'min:1', 'max:50'], ]; } }