Files
librenms-librenms/app/Models/Toner.php
tarik e3e3de1442 Printer paper tray status and error states (#9859)
* adding paper tray status and error states

* adding paper tray test data

* Create jetdirect_papertray.json

* Store printer supply type

* Update json data

* fix style
2019-03-06 18:58:14 -06:00

11 lines
177 B
PHP

<?php
namespace App\Models;
class Toner extends DeviceRelatedModel
{
protected $table = 'toner';
protected $primaryKey = 'toner_id';
public $timestamps = false;
}