選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
319B

  1. <?php
  2. namespace App\Http\Controllers\Web\Customer;
  3. use App\Http\Controllers\Web\BaseParam;
  4. use Illuminate\Http\UploadedFile;
  5. /**
  6. * @property UploadedFile[] $images
  7. */
  8. class UploadStudentLicenseImagesParam extends BaseParam
  9. {
  10. public function rules(): array
  11. {
  12. return $this->images('images');
  13. }
  14. }