StoreCompanyRequest.php 962B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Http\Requests\Company;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class StoreCompanyRequest 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:25",
  24. "address" => "required|string",
  25. "telephone" =>
  26. "required|numeric|digits_between:10,15|unique:companies,telephone," .
  27. $this->id,
  28. "email" =>
  29. "string|email|nullable|unique:companies,email," . $this->id,
  30. "npwp" =>
  31. "required|numeric|digits_between:15,20|unique:companies,npwp," .
  32. $this->id,
  33. ];
  34. }
  35. }