@include('partials.header')




@php $now = now(); $start = \Carbon\Carbon::parse($data->auction->start_date); $end = \Carbon\Carbon::parse($data->auction->end_date); $status = $now < $start ? 'upcoming' : ($now > $end ? 'finished' : 'ongoing'); $statusText = $status == 'finished' ? 'منتهي' : ($status == 'ongoing' ? 'جاري' : 'قادم'); @endphp {{ $statusText }}

{{ $data->auction->name }}

{{ $data->region->name }} - {{ $data->city->name ?? 'N/A' }}
{{ $data->auction->excutionCompany->name }}
{{ $data->auction->auctionType->name }}
{{ $data->auction->start_date }} - {{ $data->auction->end_date }}
معلومات المزاد
المزاد
{{ $data->auction->name }}
الشركة المنفذة
{{ $data->auction->excutionCompany->name }}
بداية المزاد
{{ $data->auction->start_date }}
نهاية المزاد
{{ $data->auction->end_date }}
معلومات المزاد
نوع المزاد
{{ $data->auction->auctionType->name }}
المنطقة
{{ $data->region->name }}
المدينة
{{ $data->city->name ?? 'غير متوفر' }}
الحي
{{ $data->district ?? 'غير متوفر' }}

{{ $data->auction->auctionPlatform ?? 'منصة المزاد' }}

يمكنك الانتقال إلى منصة المزاد للمشاركة في المزايدة على هذا العقار والاطلاع على التفاصيل الكاملة للمزاد.

الانتقال إلى منصة المزاد

بنود المزاد

@forelse ($property as $propertyes)

{{ $propertyes->name }}

المساحة {{ $propertyes->area ?? 'غير متوفر' }} م²
رقم الصك {{ $propertyes->instrument_no ?? 'غير متوفر' }}
الاستخدام {{ $propertyes->propertyType->name ?? 'غير متوفر' }}
الموقع {{ $propertyes->region->name ?? 'غير متوفر' }} - {{ $propertyes->city->name ?? 'غير متوفر' }}
@empty
لا توجد بنود متاحة لهذا المزاد
@endforelse