From e1a4bd6c46e023f9f8150c61a067e8170e5754aa Mon Sep 17 00:00:00 2001 From: joseph-d Date: Fri, 22 Sep 2023 12:33:35 +0100 Subject: [PATCH] Update README.md The fields should be name and description, not name and title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b92d3c5..80a087cd 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Test method `test_old_value_stays_in_form_after_validation_error()`. ## Task 6. Form Request Validation. -In `app/Http/Controllers/ItemController.php` file, validation is performed via class StoreItemRequest, but that class doesn't exist, intentionally. Your task is to create it, with parameters of authorized true, and validation rules of name/title as required fields. +In `app/Http/Controllers/ItemController.php` file, validation is performed via class StoreItemRequest, but that class doesn't exist, intentionally. Your task is to create it, with parameters of authorized true, and validation rules of name/description as required fields. Test method `test_form_request_validation()`.