What if you’re working with non-Laravel database and your timestamp columns are named differently? Maybe, you have create_time and update_time. Luckily, you can specify them in the model, too:
1class Role extends Model2{3 const CREATED_AT = 'create_time';4 const UPDATED_AT = 'update_time';5}