forge/resources/views/livewire/user/follow-cards.blade.php

14 lines
455 B
PHP
Raw Normal View History

@props([
'profileUser',
'authFollowIds' => collect(),
])
<div class="w-full max-w-sm">
<div class="flex w-full max-w-sm">
<livewire:user.follow-card relationship="followers" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
</div>
<div class="flex w-full max-w-sm">
<livewire:user.follow-card relationship="following" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
</div>
</div>