@include('partials.header') @auth {{ Auth::user()->name }} {{ Auth::user()->email }} Joined: {{ Auth::user()->created_at->format('F j, Y') }} Role: {{ ucfirst(Auth::user()->role ?? 'user') }} Logout @csrf اهتمامات المستخدم {{-- List existing interests --}} @if (!empty($interests) && count($interests)) @foreach ($interests1 as $interest) مدينة: {{ $interest->city->name ?? '---' }}, حي: {{ $interest->neighborhood }}, نوع العقار: {{ $interest->property->name ?? '---' }} @csrf @method('DELETE') حذف @endforeach @else لا توجد اهتمامات حالياً. @endif @csrf اختر المدن @foreach (App\Models\Lookups\City::all() as $data) {{ $data->name }} @endforeach اختر الأحياء @foreach (App\Models\Lookups\Neighborhood::all() as $data) {{ $data->name }} @endforeach اختر نوع العقار @foreach (App\Models\Lookups\PropertyType::all() as $data) {{ $data->name }} @endforeach اشتراك @else Please log in to view your profile. @endauth @include('partials.footer')
{{ Auth::user()->email }}
{{ Auth::user()->created_at->format('F j, Y') }}
{{ ucfirst(Auth::user()->role ?? 'user') }}
لا توجد اهتمامات حالياً.