StoreSaleRequest.php 784B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Http\Requests\Sales;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class StoreSaleRequest 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. 'number' => 'required|string|unique:sales,number',
  24. 'status' => 'required|string',
  25. 'price' => 'required|numeric',
  26. 'qty' => 'required|numeric',
  27. 'customer_id' => 'required|numeric',
  28. 'product_number' => 'required|string'
  29. ];
  30. }
  31. }