Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/storage/framework/views/
Upload File :
Current File : /var/www/html/bookstack/storage/framework/views/06b73b7fcc7f83c4388e7702c1cc08bb5ac4abae.php

<?php if(count($draftPages) > 0): ?>
    <div id="recent-drafts" class="mb-xl">
        <h5><?php echo e(trans('entities.my_recent_drafts')); ?></h5>
        <?php echo $__env->make('entities.list', ['entities' => $draftPages, 'style' => 'compact'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </div>
<?php endif; ?>

<?php if(count($favourites) > 0): ?>
    <div id="top-favourites" class="mb-xl">
        <h5><?php echo e(trans('entities.my_most_viewed_favourites')); ?></h5>
        <?php echo $__env->make('entities.list', [
            'entities' => $favourites,
            'style' => 'compact',
        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
        <a href="<?php echo e(url('/favourites')); ?>" class="text-muted block py-xs"><?php echo e(trans('common.view_all')); ?></a>
    </div>
<?php endif; ?>

<div class="mb-xl">
    <h5><?php echo e(trans('entities.' . (auth()->check() ? 'my_recently_viewed' : 'books_recent'))); ?></h5>
    <?php echo $__env->make('entities.list', [
        'entities' => $recents,
        'style' => 'compact',
        'emptyText' => auth()->check() ? trans('entities.no_pages_viewed') : trans('entities.books_empty')
        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>

<div class="mb-xl">
    <h5><?php echo e(trans('entities.recently_updated_pages')); ?></h5>
    <div id="recently-updated-pages">
        <?php echo $__env->make('entities.list', [
        'entities' => $recentlyUpdatedPages,
        'style' => 'compact',
        'emptyText' => trans('entities.no_pages_recently_updated')
        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </div>
    <a href="<?php echo e(url('/pages/recently-updated')); ?>" class="text-muted block py-xs"><?php echo e(trans('common.view_all')); ?></a>
</div>

<div id="recent-activity" class="mb-xl">
    <h5><?php echo e(trans('entities.recent_activity')); ?></h5>
    <?php echo $__env->make('common.activity-list', ['activity' => $activity], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div><?php /**PATH /var/www/html/bookstack/resources/views/home/parts/sidebar.blade.php ENDPATH**/ ?>