<?php namespace App\Models; use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Carbon;
class AlarmOrderSchedule extends Model { protected $table = 'alarm_order_schedule';
public $timestamps = false; public function getCreatedAtAttribute($value) { return Carbon::parse($value)->toDateTimeString(); } public function getUpdatedAtAttribute($value) { return Carbon::parse($value)->toDateTimeString(); }
}