1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Account.php
David Bomba 0908893180
Fixes for client currency id (#3092)
* Fix for CORs error where file download were being prevented by headers

* Fixes for CORs and File downloads

* give contextual error messages for invalid route actions

* Clean up LoginController for OAuth Testing

* Quote Actions

* Invoice and Quote Actions

* Fix for client currency
2019-11-25 20:38:55 +11:00

88 lines
1.8 KiB
PHP

<?php
/**
* 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
*/
namespace App\Models;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Laracasts\Presenter\PresentableTrait;
class Account extends BaseModel
{
use SoftDeletes;
use PresentableTrait;
use MakesHash;
/**
* @var string
*/
protected $presenter = 'App\Models\Presenters\AccountPresenter';
/**
* @var array
*/
protected $fillable = [
'plan',
'plan_term',
'plan_price',
'plan_paid',
'plan_started',
'plan_expires',
'utm_source',
'utm_medium',
'utm_campaign',
'utm_term',
'utm_content',
'user_agent',
];
/**
* @var array
*/
protected $dates = [
'deleted_at',
'promo_expires',
'discount_expires',
];
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function default_company()
{
return $this->hasOne(Company::class, 'id', 'default_company_id');
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function payment()
{
return $this->belongsTo(Payment::class)->withTrashed();
}
public function companies()
{
return $this->hasMany(Company::class);
}
public function company_users()
{
return $this->hasMany(CompanyUser::class);
}
public function getPlan()
{
return $this->plan ?: '';
}
}