2019-02-17 11:34:46 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-02-17 11:34:46 +01:00
|
|
|
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
|
|
|
|
use App\Models\Country;
|
|
|
|
use App\Models\Currency;
|
|
|
|
use App\Models\PaymentTerm;
|
2019-03-02 22:44:08 +01:00
|
|
|
use App\Utils\TranslationHelper;
|
2019-02-17 11:34:46 +01:00
|
|
|
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
|
|
|
|
{
|
2019-03-02 22:44:08 +01:00
|
|
|
$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());
|
2019-02-17 11:34:46 +01:00
|
|
|
}
|
|
|
|
}
|