@php $screenshots = $screenshots ?? collect(); $max = $screenshotsMax ?? 6; @endphp

لقطات شاشة التطبيق — الصفحة الرئيسية

تظهر في قسم «لقطات من التطبيق». يفضّل صور عمودية (9:19) — PNG/WebP/JPG حتى 3MB. ({{ $screenshots->count() }}/{{ $max }})

معاينة على الموقع ↗
@if ($screenshots->isNotEmpty())
@csrf

ترتيب العرض على الموقع:

@foreach ($screenshots as $index => $shot) @endforeach
@foreach ($screenshots as $index => $shot)
{{ $shot->caption ?? 'لقطة '.($index + 1) }}
@csrf @method('PUT')
@csrf @method('DELETE')
@endforeach
@else

لا توجد لقطات بعد — ستظهر مربعات فارغة على الموقع حتى ترفع الصور.

@endif @if ($screenshots->count() < $max)
@csrf

إضافة لقطة جديدة

@endif