Files
snipe-it/app/models/LicenseSeat.php
T
2015-02-04 15:50:40 -08:00

25 lines
498 B
PHP
Executable File

<?php
class LicenseSeat extends Elegant
{
use SoftDeletingTrait;
protected $dates = ['deleted_at'];
protected $guarded = 'id';
protected $table = 'license_seats';
public function license()
{
return $this->belongsTo('License','license_id');
}
public function user()
{
return $this->belongsTo('User','assigned_to')->withTrashed();
}
public function asset()
{
return $this->belongsTo('Asset','asset_id')->withTrashed();
}
}