Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active May 12, 2022 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9b842fb08675d9e0643d58fe3d9eefda to your computer and use it in GitHub Desktop.
Save parzibyte/9b842fb08675d9e0643d58fe3d9eefda to your computer and use it in GitHub Desktop.
<?php
public function rules()
{
return [
"titulo" => "required",
"contenido" => "required",
"fotos" => "sometimes|required|array",
"fotos.*" => [
new RequiredIf($this->input("fotos")),
"image",
"mimes:jpeg,png",
"max:3000",
]
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment