id }})"
:checked="selectedItems.includes({{ $page->id }})"
class="checkbox">
@php
$translation = $page->translations->first();
@endphp
{{ $translation->title ?? 'Page #' . $page->id }}
@if ($translation && $translation->description)
{!! Str::limit(strip_tags($translation->description), 80) !!}
@endif
@foreach($page->translations->take(3) as $trans)
{{ $trans->locale->code ?? 'N/A' }}
@endforeach
@if($page->translations->count() > 3)
+{{ $page->translations->count() - 3 }}
@endif
{{ $page->created_at->format('Y-m-d') }}
@endforeach