StoreTestTransactionRequest.php 785B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace App\Http\Requests\TestTransaction;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class StoreTestTransactionRequest 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. if ($this->id === 2) {
  23. return [
  24. 'plat_number' => 'required',
  25. 'entry_transaction_id' => 'required',
  26. 'type_vehicle_id' => 'required',
  27. ];
  28. } else {
  29. return [
  30. //
  31. ];
  32. }
  33. }
  34. }