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
Hello, just installed this plugin and trying to work with it. However, when i try to create new model, im getting the following error: "Undefined property: stdClass::$column_name" on line 18 of D:\WebServer\Projects\Univer\vendor\laravel\framework\src\Illuminate\Database\Query\Processors\MySqlProcessor.php
What i did:
Created new database table (through the builder)
Tried to create new model (builder can see new database table)
Upon clicking on the OK button, im getting error i've mentioned above
The text was updated successfully, but these errors were encountered:
Okay, i've found error:
Illuminate\Database\Query\Processors\MySqlProcessor.php line 18: return $r->column_name;
However, object contains column_name in upper case, so the following piece of code fixes problem: return $r->COLUMN_NAME;
BUT, this is vendor package, so the error somewhere in the builder plugin
Hello, just installed this plugin and trying to work with it. However, when i try to create new model, im getting the following error:
"Undefined property: stdClass::$column_name" on line 18 of D:\WebServer\Projects\Univer\vendor\laravel\framework\src\Illuminate\Database\Query\Processors\MySqlProcessor.php
What i did:
The text was updated successfully, but these errors were encountered: