12345678910111213141516171819202122 |
- <?php
- namespace App\Http\Requests;
- use App\Validators\Rules;
- class AnnouncementRequest extends FormRequest
- {
- /**
- * Get the validation rules that apply to the request.
- *
- * @return array
- */
- public function rules()
- {
- return [
- 'id' => Rules::id,
- ];
- }
- }
|