monica/data/framework/views/96feef8f4e81a24e1048e3299aee1ed943759a4d.php
2020-10-07 10:38:13 -07:00

29 lines
863 B
PHP

<div class="sidebar-box">
<?php if(is_null($contact->food_preferences)): ?>
<p class="sidebar-box-title">
<strong><?php echo e(trans('people.food_preferences_title')); ?></strong>
</p>
<p class="sidebar-box-paragraph">
<a href="<?php echo e(route('people.food.index', $contact)); ?>"><?php echo e(trans('app.add')); ?></a>
</p>
<?php else: ?>
<p class="sidebar-box-title">
<strong><?php echo e(trans('people.food_preferences_title')); ?></strong>
</p>
<p class="sidebar-box-paragraph">
<?php echo e($contact->food_preferences); ?>
<a href="<?php echo e(route('people.food.index', $contact)); ?>" class="action-link"><?php echo e(trans('app.edit')); ?></a>
</p>
<?php endif; ?>
</div>
<?php /**PATH /var/www/html/resources/views/people/food-preferences/index.blade.php ENDPATH**/ ?>