AnnouncementRequest.php 318 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Requests;
  3. use App\Validators\Rules;
  4. class AnnouncementRequest extends FormRequest
  5. {
  6. /**
  7. * Get the validation rules that apply to the request.
  8. *
  9. * @return array
  10. */
  11. public function rules()
  12. {
  13. return [
  14. 'id' => Rules::id,
  15. ];
  16. }
  17. }