Change Default Timestamp Fields

Submitted by fatihtoprak - 3 years ago

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

class Notifications extends Model
{
    const CREATED_AT = 'create_time';
    const UPDATED_AT = 'update_time';