mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 16:27:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			975 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			975 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2023. 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;
 | |
| 
 | |
| /**
 | |
|  * Class Uploadable.
 | |
|  */
 | |
| trait Uploadable
 | |
| {
 | |
|     public function removeLogo($company)
 | |
|     {
 | |
|         (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();
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |