How do I use a package language file?

一笑奈何 提交于 2019-12-10 02:39:59

问题


I'm trying to use a Laravel 4 package language file, but I don't know how to do it.

I created a package with php artisan workbench vendor/package --resources. I then create file workbench/vendor/package/src/lang/en/routes.php.

In that routes file a I have this:

<?php
return [
    'foo' => 'bar'
];

Now how do I access that? I tried with Lang::get('routes.foo') and Lang::get('vendor/package::routes.foo') but both fails and just gives me the parameter itself I entered. I'm calling it in my service providers boot method.


回答1:


Same like you call view and config:

// for lang
Lang::get('package::routes.foo')
// or with shortcut func
trans('package::routes.foo')

// for view
View::make('package::view.name');

// for config
Config::get('package::group.option');

What you need to do is to remove vendor/ but leave package.

You can see more at the Laravel documentation on: package conventions.

====

UPDATE

in laravel 5 you can call view and config like this :

// for view (shorthand)
view('path_to_view', array('data' => 'somedata'));

// for config
config('config.name', 'default');


来源:https://stackoverflow.com/questions/24831715/how-do-i-use-a-package-language-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!