16 lines
676 B
PHP
16 lines
676 B
PHP
<div class="col-12 section-title">
|
|
<contact-gift
|
|
hash="<?php echo e($contact->hashID()); ?>"
|
|
:contact-id="<?php echo e($contact->id); ?>"
|
|
:gifts-active-tab="'<?php echo e(auth()->user()->gifts_active_tab); ?>'"
|
|
:family-contacts="<?php echo e($familyRelationships->map(function ($familyRelationship) {
|
|
return [
|
|
'id' => $familyRelationship->ofContact->id,
|
|
'name' => $familyRelationship->ofContact->first_name,
|
|
];
|
|
})); ?>"
|
|
:reach-limit="<?php echo e(\Safe\json_encode($hasReachedAccountStorageLimit)); ?>"
|
|
>
|
|
</contact-gift>
|
|
</div>
|
|
<?php /**PATH /var/www/html/resources/views/people/gifts/index.blade.php ENDPATH**/ ?>
|