EnquiryRequest.php 569 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Requests\Enquiry;
  3. use App\Http\Requests\Request;
  4. class EnquiryRequest extends Request
  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. return [
  23. 'content' => 'required',
  24. 'type' => 'required',
  25. 'phone' => 'required',
  26. ];
  27. }
  28. }