UpdateSupplierRequest.php 1011B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace App\Http\Requests\Supplier;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class UpdateSupplierRequest 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<string, mixed>
  19. */
  20. public function rules()
  21. {
  22. return [
  23. "name" => "required|string|max:50",
  24. "address" => "required|string|max:200",
  25. "email" =>
  26. "string|email|nullable|unique:suppliers,email," .
  27. $this->supplier->id,
  28. "phone" =>
  29. "required|numeric|digits_between:12,20|unique:suppliers,phone," .
  30. $this->supplier->id,
  31. "npwp" =>
  32. "required|numeric|digits_between:15,20|unique:suppliers,npwp," .
  33. $this->supplier->id,
  34. ];
  35. }
  36. }