30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
|
|
<?php if($modules->contains('key', 'pets')): ?>
|
|
<pet hash="<?php echo e($contact->hashID()); ?>"></pet>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($modules->contains('key', 'contact_information')): ?>
|
|
<contact-information hash="<?php echo e($contact->hashID()); ?>"></contact-information>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($modules->contains('key', 'addresses')): ?>
|
|
<contact-address hash="<?php echo e($contact->hashID()); ?>"></contact-address>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($modules->contains('key', 'how_you_met') && ! $contact->isMe()): ?>
|
|
<?php echo $__env->make('people.introductions.index', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($modules->contains('key', 'work_information')): ?>
|
|
<?php echo $__env->make('people.work.index', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($modules->contains('key', 'food_preferences') && ! $contact->isMe()): ?>
|
|
<?php echo $__env->make('people.food-preferences.index', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
<?php /**PATH /var/www/html/resources/views/people/sidebar.blade.php ENDPATH**/ ?>
|