24 lines
402 B
PHP
24 lines
402 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LinkosDeviceLog extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'reported_at' => 'datetime',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'device_id',
|
|
'device_unit',
|
|
'device_category',
|
|
'data',
|
|
'reported_at',
|
|
];
|
|
}
|