@if ($currentStep === 1)
Ürün fotoğraflarını yükle
Yüklemeye başlamak için ürün fotoğraflarını
bu alana sürükleyip bırakın veya
Fotoğraf Seç
İpucu: En az 1 fotoğraf, en çok {{ (int) config('quick-listing.max_photo_count', 20) }} fotoğraf yükleyebilirsin.
Desteklenen formatlar: .jpg, .jpeg ve .png
@error('photos')
{{ $message }}
@enderror
@error('photos.*')
{{ $message }}
@enderror
@if (count($photos) > 0)
Seçtiğin Fotoğraflar
Fotoğrafları sıralamak için tut ve sürükle
@for ($index = 0; $index < (int) config('quick-listing.max_photo_count', 20); $index++)
@if (isset($photos[$index]))
×
@if ($index === 0)
KAPAK
@endif
@else
@endif
@endfor
@else
Ürün fotoğraflarını yükle
Hızlı ilan vermek için en az 1 fotoğraf yükleyin.
Laravel AI sizin için otomatik kategori önerileri sunar.
@endif
@endif
@if ($currentStep === 2)
@if ($isDetecting)
Fotoğraf analiz ediliyor, kategori önerisi hazırlanıyor...
@elseif ($detectedCategoryId)
AI kategori önerdi: {{ $this->selectedCategoryName }}
@if ($detectedConfidence)
(Güven: {{ number_format($detectedConfidence * 100, 0) }}%)
@endif
@if ($detectedReason)
{{ $detectedReason }}
@endif
@else
AI ile kategori tespit edilemedi, lütfen kategori seçimi yapın.
@if ($detectedError)
{{ $detectedError }}
@endif
@endif
@if ($detectedAlternatives !== [])
@foreach ($detectedAlternatives as $alternativeId)
@php
$alternativeCategory = collect($categories)->firstWhere('id', $alternativeId);
@endphp
@if ($alternativeCategory)
{{ $alternativeCategory['name'] }}
@endif
@endforeach
@endif
@if (is_null($activeParentCategoryId))
@foreach ($this->rootCategories as $category)
{{ $category['name'] }}
@endforeach
@else
@forelse ($this->currentCategories as $category)
{{ $category['name'] }}
@if ($category['has_children'] && $category['id'] !== $activeParentCategoryId)
@else
@endif
@if ($selectedCategoryId === $category['id'])
@endif
@empty
Aramaya uygun kategori bulunamadı.
@endforelse
@endif
@if ($errors->has('selectedCategoryId'))
{{ $errors->first('selectedCategoryId') }}
@endif
@if ($this->selectedCategoryName)
Seçilen kategori: {{ $this->selectedCategoryName }}
@endif
@endif
@if ($currentStep === 3)
@foreach (array_slice($photos, 0, 7) as $index => $photo)
×
@if ($index === 0)
KAPAK
@endif
@endforeach
Seçilen Kategori
{{ $this->selectedCategoryPath ?: '-' }}
Değiştir
@endif
@if ($currentStep === 4)
Seçilen Kategori
{{ $this->selectedCategoryPath ?: '-' }}
Değiştir
@if ($listingCustomFields === [])
Bu kategori için ek ilan özelliği tanımlı değil. Devam ederek önizleme adımına geçebilirsin.
@else
@foreach ($listingCustomFields as $field)
@endforeach
@endif
@endif
@if ($currentStep === 5)
Anasayfa › {{ $this->selectedCategoryPath }}
@foreach (array_slice($photos, 0, 3) as $photo)
@endforeach
@for ($empty = count(array_slice($photos, 0, 3)); $empty < 3; $empty++)
@endfor
@php
$displayPrice = is_numeric($price) ? number_format((float) $price, 0, ',', '.') : $price;
@endphp
{{ $displayPrice }} {{ \Modules\Listing\Support\ListingPanelHelper::defaultCurrency() }}
{{ $this->selectedCityName ?: '-' }}, {{ $this->selectedCountryName ?: '-' }}
{{ now()->format('d.m.Y') }}
{{ $listingTitle }}
{{ $description }}
İlan Özellikleri
@if ($this->previewCustomFields !== [])
@foreach ($this->previewCustomFields as $field)
{{ $field['label'] }}
{{ $field['value'] }}
@endforeach
@else
Ek özellik
Bu kategori için seçilmedi
@endif
{{ $this->currentUserInitial }}
{{ $this->currentUserName }}
{{ \Filament\Facades\Filament::auth()->user()?->email }}
{{ $isPublishing ? 'Yayınlanıyor...' : 'İlanı Şimdi Yayınla' }}
Geri Dön
@endif