
public $implement = [\RainLab\Translate\Behaviors\TranslatableModel::class];
public $translatable = ['image'];
public $attachOne = [
'image' => \System\Models\File::class,
];
I successfully added translated files using the Admin Backend, and I can view them in system_files.
However, when I attempt to access the model with the following code omegle owespeedtest, it shagle always returns the file that is set for 'en' (English) but not for 'fr' (French):
$model->lang('fr');
Could you please suggest a solution to this issue?