From 460699dfd0fbb80c643e2e87bf4e7c4c1610a777 Mon Sep 17 00:00:00 2001 From: Johannes Date: Wed, 1 Oct 2025 19:29:49 +0200 Subject: [PATCH] Fix case for blade view names --- src/Console/MakeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/MakeCommand.php b/src/Console/MakeCommand.php index c17b6c05..7b8a2f1c 100644 --- a/src/Console/MakeCommand.php +++ b/src/Console/MakeCommand.php @@ -107,7 +107,7 @@ public function getView() public function getViewName() { return Str::finish( - str_replace('.', '/', Str::slug(Str::snake($this->getNameInput()))), + str_replace('.', '/', Str::snake($this->getNameInput())), '.blade.php' ); }