2018-05-20 05:11:56 -04:00
|
|
|
@if(count($draftPages) > 0)
|
2019-04-06 12:31:59 -04:00
|
|
|
<div id="recent-drafts" class="mb-xl">
|
|
|
|
<h5>{{ trans('entities.my_recent_drafts') }}</h5>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.list', ['entities' => $draftPages, 'style' => 'compact'])
|
2018-05-20 05:11:56 -04:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2021-05-22 09:05:28 -04:00
|
|
|
@if(count($favourites) > 0)
|
2021-06-04 17:20:11 -04:00
|
|
|
<div id="top-favourites" class="mb-xl">
|
2021-11-23 13:18:49 -05:00
|
|
|
<h5>{{ trans('entities.my_most_viewed_favourites') }}</h5>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.list', [
|
2021-05-22 09:05:28 -04:00
|
|
|
'entities' => $favourites,
|
|
|
|
'style' => 'compact',
|
2021-06-04 17:20:11 -04:00
|
|
|
])
|
2021-11-23 13:18:49 -05:00
|
|
|
<a href="{{ url('/favourites') }}" class="text-muted block py-xs">{{ trans('common.view_all') }}</a>
|
2021-05-22 09:05:28 -04:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2019-04-06 12:31:59 -04:00
|
|
|
<div class="mb-xl">
|
2021-01-17 08:41:43 -05:00
|
|
|
<h5>{{ trans('entities.' . (auth()->check() ? 'my_recently_viewed' : 'books_recent')) }}</h5>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.list', [
|
2018-05-20 05:11:56 -04:00
|
|
|
'entities' => $recents,
|
|
|
|
'style' => 'compact',
|
2021-01-17 08:41:43 -05:00
|
|
|
'emptyText' => auth()->check() ? trans('entities.no_pages_viewed') : trans('entities.books_empty')
|
2018-05-20 05:11:56 -04:00
|
|
|
])
|
|
|
|
</div>
|
|
|
|
|
2019-04-06 12:31:59 -04:00
|
|
|
<div class="mb-xl">
|
2021-11-23 13:18:49 -05:00
|
|
|
<h5>{{ trans('entities.recently_updated_pages') }}</h5>
|
2018-05-20 05:11:56 -04:00
|
|
|
<div id="recently-updated-pages">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.list', [
|
2018-05-20 05:11:56 -04:00
|
|
|
'entities' => $recentlyUpdatedPages,
|
|
|
|
'style' => 'compact',
|
|
|
|
'emptyText' => trans('entities.no_pages_recently_updated')
|
|
|
|
])
|
|
|
|
</div>
|
2021-11-23 13:18:49 -05:00
|
|
|
<a href="{{ url('/pages/recently-updated') }}" class="text-muted block py-xs">{{ trans('common.view_all') }}</a>
|
2018-05-20 05:11:56 -04:00
|
|
|
</div>
|
|
|
|
|
2019-04-06 12:31:59 -04:00
|
|
|
<div id="recent-activity" class="mb-xl">
|
|
|
|
<h5>{{ trans('entities.recent_activity') }}</h5>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('common.activity-list', ['activity' => $activity])
|
2018-05-20 05:11:56 -04:00
|
|
|
</div>
|