$keys = array_keys(array_merge(...$settings));
-
$excel = new Spreadsheet();
$excel->getDefaultStyle()
->getNumberFormat()
$writer->save($tmpfile);
$url = route('download_settings', ['file' => base64_encode($tmpfile)]);
- $notification = 'Cliquez sur ce lien pour télécharger l\'export des paramètres :';
+ $subject = "Export groupé des paramètres des fluidbooks prêt au téléchargement";
+ $notification = '';
$action = [
'Télécharger' => $url,
];
- $user->notify(new ToolboxNotification("test", $notification, $action, true));
+ $user->notify(new ToolboxNotification($subject, $notification, $action, true));
}
}