1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Http/ViewComposers/AppLanguageComposer.php
2019-01-30 22:25:37 +11:00

38 lines
639 B
PHP

<?php
namespace App\Http\ViewComposers;
use Illuminate\View\View;
class AppLanguageComposer
{
/**
* Bind data to the view.
*
* @param View $view
*
* @return void
*/
public function compose(View $view)
{
$view->with('appLanguage', $this->getLanguage());
}
/**
* Get the language from the current locale.
*
* @return string
*/
private function getLanguage()
{
$code = app()->getLocale();
if (preg_match('/_/', $code)) {
$codes = explode('_', $code);
$code = $codes[0];
}
return $code;
}
}