I am having extreme issues trying to get cakephp to find a model. i been working on this project for 4 months now and created ton's of models but for some reason, cake can not find this model. This is how it is set up at minimum
app/controllers/arbitrations_controller.php
<?php
class ArbitrationsController extends AppController {
var $name = 'Arbitrations';
}
app/models/arbitration.php
<?php
class Arbitration extends AppModel {
var $name = 'Arbitration';
}
database name: arbitrations
Error Message
Controller::paginate() - can't find model Arbitration in controller ArbitrationsController [CORE\cake\libs\controller\controller.php, line 1102]
I've tried clearing tmp/cache/models and tmp/cache/persistent
/app/tmpand running the code again - Marek Sebera$this->Arbitrationdefined (in your controller)? - oritmp/cache/modelsand cleared everything in it as well astmp/cache/persisten- numerical25