MemberUpdateRequest.php 820 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class MemberUpdateRequest 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. $return = [
  23. 'name' => 'required|min:2',
  24. 'phone' => 'required|numeric|regex:/^1[3456789][0-9]{9}$/|unique:members,phone,'.$this->get('id').',id',
  25. ];
  26. if ($this->get('password') || $this->get('password_confirmation')){
  27. $return['password'] = 'required|confirmed|min:6|max:14';
  28. }
  29. return $return;
  30. }
  31. }