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
When create a model and its name containing under score ( _ ) gives an error but it creates every thing except make migrate because of the table name in the migration file Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Class 'CreateTestTest2Table' not found
solution : edit the migration file of the corresponding model and remove the _ under score character and perform migration from the command line
php artisan db:migrate
The text was updated successfully, but these errors were encountered:
When create a model and its name containing under score ( _ ) gives an error but it creates every thing except make migrate because of the table name in the migration file
Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Class 'CreateTestTest2Table' not found
solution : edit the migration file of the corresponding model and remove the _ under score character and perform migration from the command line
php artisan db:migrate
The text was updated successfully, but these errors were encountered: