@foreach($locales as $locale)
@php
if ($locale == $locales[0]) {
$currentTitle = $document->title;
$currentFile = $document->file;
} else {
$tr = $translations_by_locale[$locale->lang] ?? null;
$currentTitle = $tr->title ?? '';
$currentFile = $tr->file ?? null;
}
@endphp
@endforeach