mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:17:35 -05:00 
			
		
		
		
	* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
		
			
				
	
	
		
			88 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. 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 ?: '';
 | 
						|
    }
 | 
						|
}
 |