Вход Регистрация
Файл: app/Http/Requests/UpdateCouponRequest.php
Строк: 24
<?php

namespace AppHttpRequests;

use 
IlluminateFoundationHttpFormRequest;

class 
UpdateCouponRequest 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 [
            
'code' => ['required''alpha_dash''max:128''unique:coupons,code,'.$this->route('id')],
            
'days' => ['required_if:type,1''nullable''integer''min:-1''max:3650'],
            
'quantity' => ['required''integer'],
        ];
    }
}
Онлайн: 1
Реклама