'integer', 'device_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime' ]; /** * タイムスタンプを使用 * * @var bool */ public $timestamps = true; /** * deviceとのリレーション */ public function device() { return $this->belongsTo(Device::class, 'device_id', 'device_id'); } }