spatie / laravel-translatable Fields Translating

1k Views Asked by At

I'm using spatie/laravel-translatable package for translating some fields in my model. I have model model where declated that 'title' field is translatable attribute. When I getting list of my Model data in controller controller this field is not translated and gives all possible translations in json format result1 (this package requires that translatable fields must be json type). But then I getting title from my model getting title its gives correct translated result correct result of title

I need to when I getting all data of my model every translatable fields was translated like :

{
    "id": 6,
    "title":"Tbilisi"
    "country_id": 4
},

Please help if it possible to get data like this. thanks.

0

There are 0 best solutions below