|
- <?php
-
- namespace App\Http\Controllers\Web\SeasonTicketContract;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property string seasonTicketContractRecordNo
- * @property string parkingName
- * @property string zipCode
- * @property string name
- * @property string address
- * @property string phoneNo
- * @property string vehicleNo
- * @property ?string chassisNo
- * @property string payingMethod
- * @property string mailName
- * @property string mailZipCode
- * @property string mailAddress
- * @property ?string memo
- */
- class ParkingCertificateOrderParams extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'season_ticket_contract_record_no' => $this->str(),
- 'parking_name' => $this->str(),
- 'name' => $this->str(),
- 'zip_code' => $this->str(),
- 'address' => $this->str(),
- 'phone_no' => $this->str(),
- 'vehicle_no' => $this->str(),
- 'chassis_no' => $this->str(true),
- 'paying_method' => $this->str(),
- 'mail_name' => $this->str(),
- 'mail_zip_code' => $this->str(),
- 'mail_address' => $this->str(),
- 'memo' => $this->str(true),
- ];
- }
- }
|