라라벨 모델은 기본적으로 primary key를 정수로 인식한다.
만약 문자열기본키라면 아래와 같이 모델에서 정의해 줘야 한다.
[code]
class Product extends Model
{
protected $primaryKey = ‘id’;
public $incrementing = false;
protected $keyType = ‘string’;
}
[/code]
라라벨 모델은 기본적으로 primary key를 정수로 인식한다.
만약 문자열기본키라면 아래와 같이 모델에서 정의해 줘야 한다.
[code]
class Product extends Model
{
protected $primaryKey = ‘id’;
public $incrementing = false;
protected $keyType = ‘string’;
}
[/code]