Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 18:23
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/91f41b383df147e29bcb83ef9f1c7a41 to your computer and use it in GitHub Desktop.
Save parzibyte/91f41b383df147e29bcb83ef9f1c7a41 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class SubirFotosDeArticulosRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
"fotos" => "required|array",
"fotos.*" => "required|image|mimes:jpeg,png|max:3000",
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment