Saturday, June 27, 2015

[5] Laravel - Language

Tham khảo.

Thư mục chứa file lang: resources/lang
set lang trong controller

<?php namespace App\Http\Controllers;

use Session;
use App;

class WelcomeController extends Controller {
public function index()
{
//echo Session::get ('locale');
//echo App::getLocale();
App::setLocale('fr');
//echo App::getLocale();
return view('welcome');
}
}


file lang: pagination.php

<?php
return [
'testFr'     => 'lang FR',
];


Sử dụng trong view:
{{trans('pagination.testFr')}}

No comments:

Post a Comment