mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Fixed for company imports / migrations
This commit is contained in:
parent
413eadd6fb
commit
4fb8763817
@ -1 +1 @@
|
||||
5.7.43
|
||||
5.7.44
|
@ -11,20 +11,21 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Casts\EncryptedCast;
|
||||
use App\DataMapper\CompanySettings;
|
||||
use App\Models\Presenters\CompanyPresenter;
|
||||
use App\Services\Notification\NotificationService;
|
||||
use App\Utils\Ninja;
|
||||
use App\Casts\EncryptedCast;
|
||||
use App\Models\VendorContact;
|
||||
use App\Utils\Traits\AppSetup;
|
||||
use App\Utils\Traits\CompanySettingsSaver;
|
||||
use App\Utils\Traits\MakesHash;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
use Illuminate\Notifications\Notification;
|
||||
use App\DataMapper\CompanySettings;
|
||||
use Illuminate\Support\Facades\App;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Laracasts\Presenter\PresentableTrait;
|
||||
use App\Utils\Traits\CompanySettingsSaver;
|
||||
use Illuminate\Notifications\Notification;
|
||||
use App\Models\Presenters\CompanyPresenter;
|
||||
use App\Services\Notification\NotificationService;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
/**
|
||||
* App\Models\Company
|
||||
@ -512,6 +513,14 @@ class Company extends BaseModel
|
||||
return $this->hasMany(Project::class)->withTrashed();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return HasMany
|
||||
*/
|
||||
public function vendor_contacts() :HasMany
|
||||
{
|
||||
return $this->hasMany(VendorContact::class)->withTrashed();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return HasMany
|
||||
*/
|
||||
|
@ -15,8 +15,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => env('APP_VERSION','5.7.43'),
|
||||
'app_tag' => env('APP_TAG','5.7.43'),
|
||||
'app_version' => env('APP_VERSION','5.7.44'),
|
||||
'app_tag' => env('APP_TAG','5.7.44'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
Loading…
Reference in New Issue
Block a user