タイトル: $fillable $guarded $hiddenの説明
以下の例を参考に説明する。
class User extends Authenticatable protected $guarded = [ protected $hidden = [ |
$fillableはcreate()やupdate()を受け付けるいわゆるホワイトリスト。
$guardedはcreate()やupdate()を受け付けないいわゆるブラックリスト。
$hiddenは秘匿性の高い属性に付与することでJSONに含まれなくなる。