SaveProductRequest.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class SaveProductRequest 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; // todo just admin can save it
  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. 'id' => 'required',
  24. 'series' => 'required|string',
  25. 'name' => 'required|string',
  26. 'name_for_form' => 'required|string',
  27. 'product_group' => 'required|string',
  28. 'price' => 'required|numeric',
  29. 'characteristics' => 'required|string',
  30. 'tech_description' => 'required|string',
  31. 'tech_description_short' => 'required|string',
  32. ];
  33. }
  34. public function messages()
  35. {
  36. return [
  37. 'series.required' => 'Не может быть пустым',
  38. 'name.required' => 'Не может быть пустым',
  39. 'name_for_form.required' => 'Не может быть пустым',
  40. 'product_group.required' => 'Не может быть пустым',
  41. 'price.required' => 'Не может быть пустым',
  42. 'characteristics.required' => 'Не может быть пустым',
  43. 'tech_description.required' => 'Не может быть пустым',
  44. 'tech_description_short.required' => 'Не может быть пустым',
  45. ];
  46. }
  47. }