PatientUpdateRequest.php 509 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Requests\TCM;
  3. use Anik\Form\FormRequest;
  4. class \PatientUpdateRequest extends FormRequest
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. protected
  12. function authorize(): bool
  13. {
  14. return false;
  15. }
  16. /**
  17. * Get the validation rules that apply to the request.
  18. *
  19. * @return array
  20. */
  21. protected
  22. function rules(): array
  23. {
  24. return [
  25. //
  26. ];
  27. }
  28. }