I just created a simple app in Laravel 4 and when I create a model, I get an exception that it's not found.
// /app/models/Worker.php:
<?php
class Worker extends Eloquent {}
And then in the Controller
var_dump(Worker::find(1));
This gives me Error: Class 'Worker' not found. What am I doing wrong? This used to work in Laravel 3 and also watching the screencasts it seems like this should work.