22 lines
391 B
PHP
22 lines
391 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Printer extends Model
|
|
{
|
|
// Printer Model
|
|
protected $table = 'printers';
|
|
protected $primaryKey = 'id';
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'printertype_id'
|
|
];
|
|
public function printertype()
|
|
{
|
|
return $this->belongsTo(Printertype::class);
|
|
}
|
|
}
|