}
$r[$reference] = $data;
$title = trim(trim($data['Catégorie'] ?? '') . ' ' . trim($data['RBU'] ?? ''));
- $subtitle = trim(trim($data['Age Group'] ?? '') . ' - ' . trim($data['Product Line'] ?? ''), '- ');
+ $subtitle = trim(trim($data['Age Group'] ?? '') . ' - ' . $data['Gender'] . ' - ' . trim($data['Product Line'] ?? ''), '- ');
$key = md5($title . $subtitle);
if (!isset($planches[$key])) {
$planches[$key] = ['class' => $data['Catégorie'], 'title' => $title, 'subtitle' => $subtitle, 'products' => []];
}
$planches[$key]['products'][$reference] = $data;
-
}
$html = '<html>';
protected function _getPumaPlanogrammeCSS()
{
return file_get_contents(resource_path('puma/planogramme/style.css'));
-
}
}