Allow deleted users

This commit is contained in:
snipe
2013-11-29 16:39:24 -05:00
parent a7ca9f0c9f
commit dca7a7f2eb
+1 -1
View File
@@ -11,7 +11,7 @@ class LicenseSeat extends Elegant {
public function user()
{
return $this->belongsTo('User','assigned_to');
return $this->belongsTo('User','assigned_to')->withTrashed();
}
}