根据http://forums.laravel.io/viewtopic.php?id=8857
,我了解骆驼案是通常的惯例但是,Laravel使用created_at和updated_at作为时间戳字段。
我对数据库中字段名称的最佳命名约定感到困惑?如果使用camel,我可以将created_at切换到createdAt,还是应该将camel case用于自己的字段和蛇案例作为时间戳?
我似乎并不清楚。也许Laravel希望我一直使用snake case,比如数据库中的first_name和PHP代码中的$ first_name,而不是数据库中的firstName和代码中的$ firstName?
我希望有人能澄清......
答案 0 :(得分:13)
Snake case是数据库字段和模型属性的约定。
您可以在文档中的getter和setter(http://laravel.com/docs/eloquent#accessors-and-mutators)或关系部分(http://laravel.com/docs/eloquent#relationships)中看到它。