spatie / laravel-translatable

Making Eloquent models translatable
https://spatie.be/docs/laravel-translatable
MIT License
2.26k stars 281 forks source link

Issue with translated json values #415

Closed Semvrij closed 1 year ago

Semvrij commented 1 year ago

Issue with translated json values

$question = Question::create([
    'question'      => 'What is the color of a banana',
    'answer'        => 'Yellow',
    'other_answers' => ['Red', 'Green', 'Purple']
]);

dd($question->other_answers); // ""