2019-04-24 02:22:02 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-24 02:22:02 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2019-05-29 06:33:53 +02:00
|
|
|
use App\Models\Invoice;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Utils\Traits\Inviteable;
|
2019-04-24 02:22:02 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-11-12 05:41:02 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-09-23 07:59:01 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-04-24 02:22:02 +02:00
|
|
|
|
|
|
|
class InvoiceInvitation extends BaseModel
|
|
|
|
{
|
|
|
|
|
|
|
|
use MakesDates;
|
2019-11-12 05:41:02 +01:00
|
|
|
use SoftDeletes;
|
2019-11-16 04:12:29 +01:00
|
|
|
use Inviteable;
|
|
|
|
|
2019-11-06 23:57:09 +01:00
|
|
|
protected $fillable = [
|
2019-04-24 07:18:48 +02:00
|
|
|
'id',
|
2019-11-06 23:57:09 +01:00
|
|
|
'client_contact_id',
|
2019-04-24 07:18:48 +02:00
|
|
|
];
|
|
|
|
|
2019-05-29 06:33:53 +02:00
|
|
|
public function entityType()
|
|
|
|
{
|
|
|
|
return Invoice::class;
|
|
|
|
}
|
|
|
|
|
2019-04-24 02:22:02 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function invoice()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function contact()
|
|
|
|
{
|
2019-11-04 01:22:59 +01:00
|
|
|
return $this->belongsTo(ClientContact::class,'client_contact_id','id')->withTrashed();
|
2019-04-24 02:22:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function signatureDiv()
|
|
|
|
{
|
|
|
|
if (! $this->signature_base64) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sprintf('<img src="data:image/svg+xml;base64,%s"></img><p/>%s: %s', $this->signature_base64, ctrans('texts.signed'), $this->createClientDate($this->signature_date, $this->contact->client->timezone()->name));
|
|
|
|
}
|
|
|
|
|
2019-06-02 11:57:12 +02:00
|
|
|
public function getName()
|
|
|
|
{
|
2019-09-23 05:22:24 +02:00
|
|
|
return $this->invitation_key;
|
2019-06-02 11:57:12 +02:00
|
|
|
}
|
|
|
|
|
2019-09-23 07:59:01 +02:00
|
|
|
public function markViewed()
|
|
|
|
{
|
|
|
|
$this->viewed_date = Carbon::now();
|
|
|
|
$this->save();
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
}
|