StoreCustomerRequest.php 950B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\Http\Requests\Customer;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class StoreCustomerRequest 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. $basicValidation = [
  23. 'customer_number' => 'required|string',
  24. 'name' => 'required|string|max:50',
  25. 'phone' => 'required|numeric|min:12|unique:customers,phone',
  26. 'gender_id' => 'required|numeric',
  27. ];
  28. if ($this->transaction_number) {
  29. array_push($basicValidation, ['transaction_number' => 'required|string']);
  30. return $basicValidation;
  31. } else {
  32. return $basicValidation;
  33. }
  34. }
  35. }