mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 11:14:06 +00:00
Change namespace
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Traits;
|
||||
namespace InvoiceShelf\Traits;
|
||||
|
||||
use Illuminate\Support\Facades\Http;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Traits;
|
||||
namespace InvoiceShelf\Traits;
|
||||
|
||||
trait GeneratesMenuTrait
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Traits;
|
||||
namespace InvoiceShelf\Traits;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Crater\Models\Address;
|
||||
use Crater\Models\CompanySetting;
|
||||
use Crater\Models\FileDisk;
|
||||
use InvoiceShelf\Models\Address;
|
||||
use InvoiceShelf\Models\CompanySetting;
|
||||
use InvoiceShelf\Models\FileDisk;
|
||||
use Illuminate\Support\Facades\App;
|
||||
|
||||
trait GeneratesPdfTrait
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Traits;
|
||||
namespace InvoiceShelf\Traits;
|
||||
|
||||
use Crater\Models\CustomField;
|
||||
use InvoiceShelf\Models\CustomField;
|
||||
|
||||
trait HasCustomFieldsTrait
|
||||
{
|
||||
public function fields()
|
||||
{
|
||||
return $this->morphMany('Crater\Models\CustomFieldValue', 'custom_field_valuable');
|
||||
return $this->morphMany('InvoiceShelf\Models\CustomFieldValue', 'custom_field_valuable');
|
||||
}
|
||||
|
||||
protected static function booted()
|
||||
|
||||
Reference in New Issue
Block a user