관리-도구
편집 파일: UpdatePictureRequest.php.tar
home/tattooscyy/test/app/Http/Requests/UpdatePictureRequest.php 0000604 00000000720 15224667327 0021060 0 ustar 00 <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class UpdatePictureRequest 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 [ 'picture' => 'required', ]; } }