mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 17:07:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Http\ViewComposers;
 | |
| 
 | |
| use App\Models\Country;
 | |
| use App\Models\Currency;
 | |
| use App\Models\PaymentTerm;
 | |
| use App\Utils\TranslationHelper;
 | |
| use Cache;
 | |
| use Illuminate\Support\Str;
 | |
| use Illuminate\View\View;
 | |
| 
 | |
| 
 | |
| class TranslationComposer
 | |
| {
 | |
|     /**
 | |
|      * Bind data to the view.
 | |
|      *
 | |
|      * @param View $view
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function compose(View $view) :void
 | |
|     {
 | |
|         
 | |
|         $view->with('industries', TranslationHelper::getIndustries());
 | |
| 
 | |
|         $view->with('countries', TranslationHelper::getCountries());
 | |
| 
 | |
|         $view->with('payment_types', TranslationHelper::getPaymentTypes());
 | |
| 
 | |
|         $view->with('languages', TranslationHelper::getLanguages());
 | |
| 
 | |
|         $view->with('currencies', TranslationHelper::getCurrencies());
 | |
| 
 | |
|         $view->with('payment_terms', TranslationHelper::getPaymentTerms());
 | |
| 
 | |
|     }
 | |
| 
 | |
| }
 |