2019-04-18 07:01:40 +02:00
|
|
|
<?php
|
2018-10-22 14:04:37 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2019-02-17 11:34:46 +01:00
|
|
|
use App\DataMapper\CompanySettings;
|
2019-01-25 11:47:23 +01:00
|
|
|
use App\Models\Account;
|
|
|
|
use App\Models\AccountGateway;
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\Country;
|
|
|
|
use App\Models\Currency;
|
|
|
|
use App\Models\Expense;
|
|
|
|
use App\Models\Industry;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Language;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\PaymentType;
|
|
|
|
use App\Models\Product;
|
|
|
|
use App\Models\TaxRate;
|
|
|
|
use App\Models\Timezone;
|
2018-10-22 14:04:37 +02:00
|
|
|
use App\Models\Traits\AccountTrait;
|
2019-01-25 11:47:23 +01:00
|
|
|
use App\Models\User;
|
2018-11-20 05:36:56 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-04-18 13:57:22 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2018-11-02 11:54:46 +01:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
class Company extends BaseModel
|
2018-10-22 14:04:37 +02:00
|
|
|
{
|
2018-11-02 11:54:46 +01:00
|
|
|
use PresentableTrait;
|
2018-11-20 05:36:56 +01:00
|
|
|
use MakesHash;
|
2018-11-02 11:54:46 +01:00
|
|
|
|
|
|
|
protected $presenter = 'App\Models\Presenters\CompanyPresenter';
|
|
|
|
|
2018-11-20 05:36:56 +01:00
|
|
|
protected $guarded = [
|
|
|
|
'id',
|
|
|
|
'company_id'
|
2018-10-22 14:04:37 +02:00
|
|
|
];
|
|
|
|
|
2019-03-02 22:44:08 +01:00
|
|
|
protected $appends = [
|
|
|
|
'settings_object'
|
|
|
|
];
|
2019-02-17 11:34:46 +01:00
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
'settings' => 'object'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function getSettingsObjectAttribute()
|
|
|
|
{
|
|
|
|
return new CompanySettings($this->settings);
|
|
|
|
}
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2018-11-20 05:36:56 +01:00
|
|
|
public function getRouteKeyName()
|
|
|
|
{
|
|
|
|
return 'company_id';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCompanyIdAttribute()
|
|
|
|
{
|
|
|
|
return $this->encodePrimaryKey($this->id);
|
|
|
|
}
|
2018-10-22 14:04:37 +02:00
|
|
|
|
|
|
|
public function account()
|
|
|
|
{
|
2018-11-02 11:54:46 +01:00
|
|
|
return $this->belongsTo(Account::class);
|
2018-10-22 14:04:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function users()
|
|
|
|
{
|
|
|
|
return $this->hasMany(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function clients()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Client::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function contacts()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Contact::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function invoices()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Invoice::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function account_gateways()
|
|
|
|
{
|
|
|
|
return $this->hasMany(AccountGateway::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function tax_rates()
|
|
|
|
{
|
|
|
|
return $this->hasMany(TaxRate::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function products()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Product::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Country::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function timezone()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Timezone::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function language()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Language::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function currency()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Currency::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function industry()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Industry::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function payment_type()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(PaymentType::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function expenses()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Expense::class, 'account_id', 'id')->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function payments()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Payment::class, 'account_id', 'id')->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-03-26 05:46:08 +01:00
|
|
|
public function tokens()
|
|
|
|
{
|
|
|
|
return $this->hasMany(CompanyToken::class);
|
|
|
|
}
|
|
|
|
|
2019-03-27 07:22:27 +01:00
|
|
|
public function company_users()
|
|
|
|
{
|
|
|
|
return $this->hasMany(CompanyUser::class);
|
|
|
|
}
|
|
|
|
|
2019-04-18 13:57:22 +02:00
|
|
|
public function owner()
|
|
|
|
{
|
|
|
|
$c = $this->company_users->where('is_owner',true)->first();
|
|
|
|
|
|
|
|
return User::find($c->user_id);
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:04:37 +02:00
|
|
|
}
|