Class ‘App\Model\BaseEntity’ not found
Notice: This thread is very old.
- Jan Mikeš
- Member | 771
Check your namespaces, there are inaccuracies in what you write and what is
in your code.
You write $project = new \App\Model\Project();
, but in code you
have $project = new \App\Project();
As well referring to your code, you CAN NOT get error message
Class ‘App\Model\BaseEntity’ not found
because you are
extending \App\BaseEntity
class