PartyUpdateRequest.php 862 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class PartyUpdateRequest extends FormRequest
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. public function authorize()
  12. {
  13. return true;
  14. }
  15. /**
  16. * Get the validation rules that apply to the request.
  17. *
  18. * @return array
  19. */
  20. public function rules()
  21. {
  22. $reture = [
  23. 'balance' => 'required|regex:/^[0-9]{1,8}(.[0-9]{1,2})?$/|',
  24. 'phone' => 'required|numeric|regex:/^1[34578][0-9]{9}$/|unique:ag_party,phone,'.$this->get('id').',id',
  25. 'key' => 'required|unique:ag_party,key,'.$this->get('id').',id',
  26. 'name' => 'required|min:2|max:14|unique:ag_party,name,'.$this->get('id').',id',
  27. ];
  28. return $reture;
  29. }
  30. }