24 lines
772 B
PHP
24 lines
772 B
PHP
<div class="<?php echo e(htmldir() == 'ltr' ? 'fl' : 'fr'); ?> w-100 pb3 pt1 pl3 pr3">
|
|
<div class="br2 bg-white mb4">
|
|
|
|
<?php if(config('monica.requires_subscription') && $accountHasLimitations): ?>
|
|
|
|
<div class="">
|
|
<h3>
|
|
📄 <?php echo e(trans('people.document_list_title')); ?>
|
|
|
|
</h3>
|
|
|
|
<div class="section-blank">
|
|
<p><?php echo e(trans('settings.storage_upgrade_notice')); ?></p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<document-list hash="<?php echo e($contact->hashID()); ?>" reach-limit="<?php echo e(\Safe\json_encode($hasReachedAccountStorageLimit)); ?>"></document-list>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php /**PATH /var/www/html/resources/views/people/documents/index.blade.php ENDPATH**/ ?>
|