mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 09:44:55 +02:00
Change hidden to hide (Eloquent blocked keyword)
This commit is contained in:
@@ -97,7 +97,7 @@ if (!empty($action) && isRequestMethod('post')) {
|
||||
}
|
||||
}
|
||||
} else if ($action == 'hide') {
|
||||
if (Pages::toggleHidden($id, $errors, $status)) {
|
||||
if (Pages::toggleHide($id, $errors, $status)) {
|
||||
success(($status == 0 ? 'Show' : 'Hide') . ' successful.');
|
||||
}
|
||||
}
|
||||
@@ -112,7 +112,7 @@ $pages = ModelsPages::all()->map(function ($e) {
|
||||
'title' => substr($e->title, 0, 20),
|
||||
'php' => $e->php == '1',
|
||||
'id' => $e->id,
|
||||
'hidden' => $e->hidden
|
||||
'hide' => $e->hide
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
|
Reference in New Issue
Block a user