Compare commits

..

No commits in common. "093b04c2c98df05bcbe66f1547201f118d0cfef5" and "a71102eb0582cac86516f736f21c96c68352e10a" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View File

@ -94,10 +94,8 @@ class RestController
$model = $this->model->where('id', $id)->first();
foreach ($model->getFillable() as $item){
if (!empty($data[$item])){
$model->{$item} = $data[$item] ?? null;
}
}
$model->save();
$this->renderApi($model->toArray());

View File

@ -30,6 +30,7 @@ $meta['total'] = $module_count;
$info_to_table['meta'] = $meta;
$info_to_table['data'] = $modules_info;
$info_to_table['filters'] = ['type'/*, 'author'*/];
$table = new ListJsonTable(json_encode($info_to_table, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
@ -39,16 +40,6 @@ $table->addAction(function ($row, $url) use ($moduleService) {
return \kernel\widgets\IconBtn\IconBtnViewWidget::create(['url' => $url])->run();
});
$table->columns([
'type' => [
'filter' => [
'class' => \Itguild\Tables\Filter\SelectFilter::class,
'param' => ['kernel', 'entity'],
'value' => "kernel"
],
]
]);
$table->addAction(function ($row, $url) use ($moduleService){
if ($row['slug'] !== 'kernel') {
if ($moduleService->isInstall($row['slug'])) {