본문 바로가기
배우고 있습니다/PHP

[Laravel] $hidden의 의미

by 유헤 2024. 2. 6.

 

 

 

Laravel Model를 사용하다보면 $hidden이라고 정의 된 부분이 있다.

 

이게 무엇을 의미하는지 몰라 찾아보았는데

 

 

 

https://stackoverflow.com/questions/59408246/what-effect-does-hidden-have-exactly-in-eloquent-model 

 

What effect does $hidden have exactly in eloquent model?

I'm currently fiddling around with Lumen and Im using eloquent for my DB interaction. I've read through the docs of Eloquent and there was this explanation about hidden attributes: Sometimes you...

stackoverflow.com

 

 

라라벨 API 페이지로 들어가보니

https://laravel.com/api/6.x/Illuminate/Database/Eloquent/Model.html

 

Illuminate\Database\Eloquent\Model | Laravel API

abstract class Model implements Arrayable, ArrayAccess, Jsonable, JsonSerializable, QueueableEntity, UrlRoutable (View source) Traits Constants CREATED_AT The name of the "created at" column. UPDATED_AT The name of the "updated at" column. Properties prote

laravel.com

 

 

DB 조회 후 Model에 Seriailization 을 하는데, 이때 자동으로 들어가지 않도록 설정해주는 변수명이다.