@php
$langs = [['code' => 'de', 'name' => 'Deutsch'], ['code' => 'en', 'name' => 'English'], ['code' => 'hu', 'name' => 'Magyar'], ['code' => 'sk', 'name' => 'Slovenčina']];
@endphp
@foreach ($langs as $lang)
@php
$translation = $dish->translations->firstWhere('locale', $lang['code']);
@endphp
@endforeach