What is the correctly table name of this table in Laravel 3/4?
Structure image_projects (id, project_id, image, ext, size, c
Current Laravel version 4.2 table name convention works OK in that way:
Table name: image_projects
image_projects
File name: ImageProject.php
ImageProject.php
Class name: ImageProject
ImageProject
The camel-case class name forced me with an exception to use table name underscores.