17 lines
280 B
PHP
17 lines
280 B
PHP
<?php
|
|
|
|
class LicenseSeat extends Elegant {
|
|
protected $table = 'license_seats';
|
|
protected $softDelete = true;
|
|
|
|
public function license()
|
|
{
|
|
return $this->belongsTo('License');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User','assigned_to')->withTrashed();
|
|
}
|
|
|
|
} |