19 lines
359 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Device extends Model
{
protected $fillable = [
'user_id','name','imei','is_active','last_seen_at','last_ip',
'firmware_version','hardware_version',
];
protected $casts = [
'is_active' => 'boolean',
'last_seen_at' => 'datetime',
];
}