标签: laravel-5 eloquent
在Laravel 5.5文档中,解释了为了定义数据库字段,有必要在模型中编写类似的内容:
protected $fillable = [ 'name', 'email', 'password', 'birth_date' ];
如何指定字段类型(布尔值,日期时间等)?
答案 0 :(得分:0)
在$casts数组中,您需要使用ur模型定义ur数据库中的可访问字段,请在laravel doc fillable中阅读。
$casts
指定字段的类型你可以使用ur模型中的$1.11 $2.22 $3.33 $4.44 $5.55 数组来从模型中的ur数据库中转换数据,并使用特定的类型来读取laravel doc casts < / p>
$1.11 $2.22 $3.33 $4.44 $5.55