I am trying to solve mine N+1 problems with SQL queries. I have managed to reduce the number of queries by half, but I am having problems with queries that fetch localized data.
This are my tables relationships:
Realestate
City
City_translation
Language
How can I fetch all realestates from database and then display the localized city name in language x for each realestate fetched using eloquent.
$all = Realestate::with('city')->get();
//And then in my view
@foreach($all as $single)
$single->city->translation(App::getLocale())->name
//or
$single->city->name
// and it should return the translated
@endforeach
Any ideas?
Ok, I have solved this for my projects and have created a package for anyone that comes into this situation again: TranslateThatModel
Here is another approach on translating Eloquent objects: https://github.com/vinkla/translator
Hello,
I 've created a package igaster/laravel-translate-eloquent that adds translation to any Eloquent Model. It requires only one additional table in your DB where all the translations will be stored...
Hope it is usefull... Cheers!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community