mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
20 lines
712 B
PHP
20 lines
712 B
PHP
<nav class="header">
|
|
|
|
<h1 class="text-lg px-6">{{ config('app.name') }}</h1>
|
|
|
|
<ul class="flex-grow justify-end pr-2">
|
|
<li>
|
|
<a href="{{ route('languages.index') }}" class="{{ set_active('') }}{{ set_active('/create') }}">
|
|
@include('translation::icons.globe')
|
|
{{ __('translation::translation.languages') }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ route('languages.translations.index', config('app.locale')) }}" class="{{ set_active('*/translations') }}">
|
|
@include('translation::icons.translate')
|
|
{{ __('translation::translation.translations') }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</nav> |