You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a fresh laravel 9 project I try to execute this command : artisan infyom.publish:user
This is the response:
InvalidArgumentException
View [users.create] not found.
at vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137
133▕ }
134▕ }
135▕ }
136▕
➜ 137▕ throw new InvalidArgumentException("View [{$name}] not found.");
138▕ }
139▕
140▕ /**
141▕ * Get an array of possible view files.
i users.create was not found: Are you sure the view exists and is a `.blade.php` file?
+19 vendor frames
20 artisan:37
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
I don't know what I have to do. The command create the folder resources/views/users but it's empty. I don't know where is the wanted users.create file. There is a create.blade.php file inside resources/views/vendor/adminlte-templates/templates/users.
(By the way, I'm using lando, but i don't think this could be the problem)
The text was updated successfully, but these errors were encountered:
I have a solution for that try using
php artisan infyom:scaffold User --fromTable --table=users this command
if this is'nt worked try
php artisan infyom:scaffold User --fromTable --tableName=users
With a fresh laravel 9 project I try to execute this command :
artisan infyom.publish:user
This is the response:
I don't know what I have to do. The command create the folder
resources/views/users
but it's empty. I don't know where is the wantedusers.create
file. There is a create.blade.php file insideresources/views/vendor/adminlte-templates/templates/users
.(By the way, I'm using lando, but i don't think this could be the problem)
The text was updated successfully, but these errors were encountered: