@if ($record->exists)

Add photos & video

Uploads are added to this album immediately.

@csrf

Album contents ({{ $items->count() }})

@if ($items->isEmpty())

This album is empty.

@else
@foreach ($items as $item)
@if ($item->isVideo())
{{ $item->type === 'video_embed' ? 'Embed' : 'Upload' }}
@else {{ $item->caption }} @endif
@csrf @method('DELETE')
@endforeach
@endif
@endif