<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Carbon; class AppointmentLogs extends Model { public $timestamps = false; protected $fillable = ['appointment_id', 'slug', 'data', 'time_at']; }