Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace App\Http\Controllers\Web\Custom\HelloTechno;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property ?string $customerCode
- */
-
- class CustomersParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'customer_code' => $this->str(true),
- ];
- }
- }
|