TaskPutRequest.php 799 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class TaskPutRequest 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. return [
  23. "name" => "max:255",
  24. "type_name" => "exists:App\Models\TaskType,name",
  25. "place" => "max:500",
  26. "date" => "date_format:Y-m-d",
  27. "time" => "date_format:H:i",
  28. "duration" => "date_format:H:i",
  29. "comment" => "max:1024",
  30. "done" => "boolean"
  31. ];
  32. }
  33. }