1. Illuminate Database
1.1. Connection
连接数据库和操作数据库
Illuminate\Database\Connection
1.2. Scope
范围,相当于 sql 语句中加 where 约束
Illuminate\Database\Eloquent\Scope
1.3. Model
模型
\Illuminate\Database\Eloquent\Model
1.3.1. SoftDeletes
如果需要软删除功能,Model 添加
/**
* 使用软删除
*/
use SoftDeletes;
/**
* 以时间的方式存储的字段.
*
* @var array
*/
protected $dates = ['deleted_at'];
/**
* 用时间戳形式存储时间.
*
* @var string
*/
protected $dateFormat = 'U';
1.4. Builder
拼装 sql 语句并执行
\Illuminate\Database\Query\Builder
getModel()
获取模型
1.5. Collection
Builder select 的结果
\Illuminate\Database\Eloquent\Collection
1.6. 错误
1.6.1. MassAssignmentException
laravel保护我们不能直接插入记录。比如,在一些特殊情况下我们需要直接利用表单的信息填充数据库记录,但是如果我们并没有在表单中添加密码字段,而黑客产生了密码字段连同我们的其他字段一起送回服务器,这将产生修改密码的危险,所以我们必须明确的告诉laravel我们的模型那些字段是可以直接填充的。
protected $fillable = [
'title',
'body',
'published_at'
];
表示,title, body, published_at 是可以直接填充的。