24 lines
No EOL
347 B
PHP
Executable file
24 lines
No EOL
347 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');
|
|
}
|
|
|
|
public function getLink()
|
|
{
|
|
return URL::to('view') . '/' . $this->invitation_key;
|
|
}
|
|
} |