mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Utils\Traits;
 | 
						|
 | 
						|
use App\Jobs\Util\UnlinkFile;
 | 
						|
use App\Jobs\Util\UploadAvatar;
 | 
						|
use Illuminate\Support\Facades\Storage;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class Uploadable.
 | 
						|
 */
 | 
						|
trait Uploadable
 | 
						|
{
 | 
						|
    public function removeLogo($company)
 | 
						|
    {
 | 
						|
        //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) {
 | 
						|
                $settings = $entity->settings;
 | 
						|
                $settings->company_logo = $path;
 | 
						|
                $entity->settings = $settings;
 | 
						|
                $entity->save();
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |