관리-도구
편집 파일: OrderRequest.php.tar
home/tattooscyy/test/app/Http/Requests/OrderRequest.php 0000604 00000000745 15224667766 0017373 0 ustar 00 <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class OrderRequest 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 [ // ]; } } home/tattooscyy/www/app/Http/Requests/OrderRequest.php 0000644 00000000745 15224746053 0017227 0 ustar 00 <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class OrderRequest 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 [ // ]; } }