2024-10-05 14:09:22 -04:00
|
|
|
@props([
|
|
|
|
'profileUser',
|
|
|
|
'authFollowIds' => collect(),
|
|
|
|
])
|
|
|
|
|
2024-10-05 14:32:25 -04:00
|
|
|
<div class="grid grid-cols-2 w-full gap-6">
|
|
|
|
<div class="col-span-full md:col-span-1 lg:col-span-2 flex w-full">
|
2024-10-05 14:09:22 -04:00
|
|
|
<livewire:user.follow-card relationship="followers" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
|
|
|
</div>
|
2024-10-05 14:32:25 -04:00
|
|
|
<div class="col-span-full md:col-span-1 lg:col-span-2 flex w-full">
|
2024-10-05 14:09:22 -04:00
|
|
|
<livewire:user.follow-card relationship="following" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
|
|
|
</div>
|
|
|
|
</div>
|