# Laravel 中文語言包 由於驗證規則提示都是顯示英文,對使用者並不友好,所以須改成中文。  安裝 `overtrue/laravel-lang` `$ composer require overtrue/laravel-lang` 安裝成功後,在 `config/app.php` 中 將 `Illuminate\Translation\TranslationServiceProvider::class` 改成 `Overtrue\LaravelLang\TranslationServiceProvider::class` 並修改系統語言,將原本的值 `en` 改成 `zh_TW` `'locale' => 'zh_TW'`  可以看到有些欄位名稱還是英文 因此可以在 `UserAddressRequest` 中定義 `attributes()` 方法來指定欄位名稱 *app/Http/Requests/UserAddressRequest.php* ``` public function attributes() { return [ 'city' => '城市', 'district' => '地區', 'address' => '詳細地址', 'contact_name' => '聯絡人姓名', 'contact_phone' => '聯絡人電話', ]; } ```  再次送出表單 ###### tags: `Laravel`
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up