Home > database >  How can I use Laravel Multi language with Vue & Blade
How can I use Laravel Multi language with Vue & Blade

Time:01-06

I'm working on a small website using Laravel 8 and VueJs, and I would like to add multi-language features,

I'm calling my Vue components inside blade files like that :

@section('content')
  <profile-component></profile-component>
@endsection

How can I use Laravel multi language feature, in my case since I'm using Vue inside Blade files as you can see

CodePudding user response:

For translations(multi-language) in vue use the i18n library

  •  Tags:  
  • Related