1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/models/Invitation.php

30 lines
518 B
PHP
Executable File

<?php
class Invitation extends EntityModel
{
public function invoice()
{
return $this->belongsTo('Invoice');
}
public function contact()
{
return $this->belongsTo('Contact')->withTrashed();
}
public function user()
{
return $this->belongsTo('User')->withTrashed();
}
public function account()
{
return $this->belongsTo('Account');
}
public function getLink()
{
return SITE_URL.'/view/'.$this->invitation_key;
}
}