{{ config('app.name', 'Laravel') }}
{{__('message.hello')}}
@foreach (config('app.available_locales') as $locale) @if ($locale != app()->getLocale())
@if ($locale == 'kh') ភាសាខ្មែរ @elseif ($locale == 'th') ภาษาไทย @else English @endif
@endif @endforeach @guest @if (Route::has('login'))
{{ __('Login') }}
@endif @if (Route::has('register'))
{{ __('Register') }}
@endif @else
{{ Auth::user()->name }}
{{ __('Logout') }}
@csrf
@endguest
@yield('content')