From 77a6174890a8c06617b22503942a453341da6944 Mon Sep 17 00:00:00 2001 From: Nils <695449+poldixd@users.noreply.github.com> Date: Sun, 21 Jan 2024 22:08:47 +0100 Subject: [PATCH] Changed the Namespace from "Model" to "Models" (#101) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfe1999..56f9f5c 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ You can even use Laravel's `exists:table,column` database checking request valid ```php $data = request()->validate([ - 'state' => ['required', 'exists:App\Model\State,abbr'], + 'state' => ['required', 'exists:App\Models\State,abbr'], ]); ```