1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

enh(recently updated): show updatedBy and updated_at

This commit is contained in:
julesdevops
2022-01-18 22:08:01 +01:00
parent 2aace16704
commit 6db64763fe
2 changed files with 14 additions and 3 deletions

View File

@ -364,15 +364,17 @@ class PageController extends Controller
*/
public function showRecentlyUpdated()
{
$pages = Page::visible()->orderBy('updated_at', 'desc')
$pages = Page::visible()->with('updatedBy')
->orderBy('updated_at', 'desc')
->paginate(20)
->setPath(url('/pages/recently-updated'));
$this->setPageTitle(trans('entities.recently_updated_pages'));
return view('common.detailed-listing-paginated', [
'title' => trans('entities.recently_updated_pages'),
'entities' => $pages,
'title' => trans('entities.recently_updated_pages'),
'entities' => $pages,
'showUpdatedBy' => true,
]);
}