Hey guys,
I have set up my virtual pages and have tried translating them, but I can not seem to get the syntax right. I have looked through the forums and the docs as there is an example there, but none really apply to my use case. In the API, each bonus is duplicated multiple times with a different translation in each, hence why I am checking by country code.
However, in the panel, I am getting this error:
The section “published” could not be loaded: Invalid language:
Here is my way of checking translations:
$children = array_map(function ($bonus) {
$lang_code = '';
this is required as there are many countries being pulled in and I only need a few
if($bonus['country'] == 'CA') {
$lang_code = 'ca';
} elseif ($bonus['country'] == 'NZ') {
$lang_code = 'nz';
} else {
$lang_code = 'gl';
}
$slug = Str::slug($bonus['brand']);
$page = $this->subpages()->find($slug);
return [
'slug' => $slug,
'num' => 0,
'template' => 'bonus',
'model' => 'bonus',
'translations' => [
$lang_code => [
'code' => $lang_code,
'content' => [
'title' => $bonus['brand'],
'seoTitle' => $page ? $page->seoTitle()->value() : null,
// // 'seoDescription' => $page ? $page->seoDescription()->value() : null
'featured' => $page ? $page->featured()->value() : null,
'ref_url' => $page ? $page->ref_url()->value() : null,
]
]
];
}, $results);
return Pages::factory($children, $this);
What could be causing this, or how can the syntax/logic be set up to work?