@extends('layouts.app') @section('content')

الأشخاص الذين لديهم انجذاب إليّ

اكتشف من بدأ انجذابًا تجاهك

@if(($users ?? collect())->isEmpty())

لا يوجد انجذاب بعد. ابدأ بالتفاعل لزيادة فرصك ✨

@else
@foreach($users as $user) @include('frontend.components.member-card', ['user' => $user]) @endforeach
@if(method_exists($users, 'links'))
{{ $users->links() }}
@endif @endif
@endsection