@foreach (\App\Models\CertificateTemplate::with('translations')->get() as $template)
@php
$translation = $template->translations->where('locale', app()->getLocale())->first();
$translationId = $translation ? $translation->id : null;
@endphp
@endforeach