venkat
venkat

Reputation: 11

CakePHP 3.0 how to write a model without table?

I would like to write a business logic for my application. So I need to use a model. How to use a model without a table and don't affect on any other functionalities.

I used the $this->_table=false inside the Table class. When enable the debug mode. The debug Log not working?

Can you plz suggest me how to implement?

Upvotes: 1

Views: 4086

Answers (1)

Oanh Nguyen
Oanh Nguyen

Reputation: 11

CakePHP 3.0 not support this feature. You can read this post https://github.com/cakephp/cakephp/issues/5390

Upvotes: 1

Related Questions