Empty entity attributes |
Faced a problem, I can not get data from the entity. For example,
Code: $user_entity->username Quote:Call to a member function test_func () on array An entity object is returned by the model. I did everything according to the CI4 documentation, but ran into such a problem. What are the options?
I think showing everyone a little bit more code would make possible reasonable replies.
The sequence of my actions:
1. Create a model Code: <?php namespace App\Models; 2. Create an entity Code: <?php namespace App\Entities; 3. Initialize the model in the controller. Code: $AdminModel = new AdminModel(); 4. Trying to get data from the entity. Code: $admin = $AdminModel->where('username', $this->request->getPost('username')) In case of calling an entity method, I get an error: Quote:Call to a member function verify_pass() on array When accessing entity fields directly, the resulting value = NULL. And in the dd output, my data is visible. |
Welcome Guest, Not a member yet? Register Sign In |