Fixes for comany logo
This commit is contained in:
parent
2f1ec8a235
commit
76ec67c2cf
2 changed files with 3 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ class CompanyPresenter extends EntityPresenter
|
|||
$settings = $this->entity->settings;
|
||||
}
|
||||
|
||||
return iconv_strlen($settings->company_logo > 0) ? $settings->company_logo : 'https://www.invoiceninja.com/wp-content/uploads/2019/01/InvoiceNinja-Logo-Round-300x300.png';
|
||||
return (strlen($settings->company_logo) > 0) ? $settings->company_logo : 'https://www.invoiceninja.com/wp-content/uploads/2019/01/InvoiceNinja-Logo-Round-300x300.png';
|
||||
}
|
||||
|
||||
public function address($settings = null)
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@ trait Uploadable
|
|||
if ($file) {
|
||||
$path = UploadAvatar::dispatchNow($file, $company->company_key);
|
||||
|
||||
info("the path {$path}");
|
||||
|
||||
if ($path) {
|
||||
$settings = $entity->settings;
|
||||
$settings->company_logo = $path;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue