1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Utils/Traits/Uploadable.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2019-10-07 23:17:55 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-10-07 23:17:55 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-10-07 23:17:55 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-10-07 23:17:55 +02:00
*/
namespace App\Utils\Traits;
use App\Jobs\Util\UnlinkFile;
2019-10-08 00:07:43 +02:00
use App\Jobs\Util\UploadAvatar;
use Illuminate\Support\Facades\Storage;
2019-10-08 00:07:43 +02:00
2019-10-07 23:17:55 +02:00
/**
* Class Uploadable.
2019-10-07 23:17:55 +02:00
*/
trait Uploadable
{
public function removeLogo($company)
{
2022-07-31 14:23:50 +02:00
//if (Storage::disk(config('filesystems.default'))->exists($company->settings->company_logo)) {
(new UnlinkFile(config('filesystems.default'), $company->settings->company_logo))->handle();
//}
}
public function uploadLogo($file, $company, $entity)
{
if ($file) {
$path = (new UploadAvatar($file, $company->company_key))->handle();
if ($path) {
2019-10-07 23:17:55 +02:00
$settings = $entity->settings;
2020-02-27 00:32:44 +01:00
$settings->company_logo = $path;
2019-10-07 23:17:55 +02:00
$entity->settings = $settings;
$entity->save();
}
}
}
}