29 lines
863 B
PHP
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**/ ?>
|