<?php

namespace App\Models\Settings;

use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Contracts\Auditable;
use OwenIt\Auditing\Auditable as AuditableTrait;

class ScheduleLog extends Model implements Auditable
{
    
    use AuditableTrait;
    protected $table='schedule_log';

    protected $primaryKey = 'id';

    protected $fillable = ['transaction_id','command','command_log','status','starttime','endtime'];


}
