mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-19 02:44:37 -04:00
19 lines
257 B
PHP
Executable File
19 lines
257 B
PHP
Executable File
<?php
|
|
|
|
class Invitation extends EntityModel
|
|
{
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('Invoice');
|
|
}
|
|
|
|
public function contact()
|
|
{
|
|
return $this->belongsTo('Contact');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
} |