관리-도구
편집 파일: UpdateBlogsRequest.php.tar
home/tattooscyy/www/app/Http/Requests/UpdateBlogsRequest.php 0000644 00000000713 15224727521 0020357 0 ustar 00 <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class UpdateBlogsRequest 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 [ 'name' => 'required', ]; } }