[TOC]
## 文件命名
### 模型命名
PascalCase 如 LoginForm.php
### 视图命名
lowerCase 如 view.php productInfo.php
### 控制器命名
PascalCase 如 ProductController.php
## MySQL命名
### 数据库命名
lower_case 如 db_review
### 数据表命名
lower_case 如 product_info
### 字段命名
lower_case 如 description created_at
### 常用字段命名
- 主键 id
- 外键 表名_id,如user_id
- 时间 created_at updated_at
### 迁移文件命名
lower_case 如 add_description_to_product