Links
Comboboxen erstellen
// Combobox für SProperty-Verweis
$optionsStatus = SProperty::optionsByScope('notestatus', $fields['status'], 'all');
// Combobox für Verweis in andere Tabelle:
$optionsUser = DbHelper::comboboxDataOfTable('users', 'name', 'id', $fields['user']);
$context = new ContextLaraKnife($request, $fields);
return view('note.index', [
'records' => $records,
'context' => $context,
'optionsCategory' => $optionsCategory,
'optionsStatus' => $optionsStatus,
'optionsUser' => $optionsUser,
'pagination' => $pagination
]);