Reputation: 2505
I have build a laravel project where there is keyword called 'create' been added to the above of every page as well as in command prompt.
In every page of my application a keyword called 'create' in the above section and in command prompt also. suppose i want to run php artisan migrate
, the command start with create and then migration file created same as for every command i run means it starts with create
.
But while i run the same command in other projects nothing happened everything run smoothly.
I know the problem is weird but if anyone face the problem before hope help me to find it out.
Upvotes: 1
Views: 309
Reputation: 3040
You have most likely accidentally added the word 'create' to a file somewhere in your application, probably outside a PHP tag.
I recommend doing a source code search for the word.
Upvotes: 0
Reputation: 672
This is because create keyword is added accidentally in some file. Once i faced this issue, accidentally a keyword was mistyped in routes.php before
Upvotes: 1