@extends("_admin.adminapp") @section('content') {{ __('Translations') }} {{ trans('admin.dashboard') }} {{ __('Translations') }} {{ __("Languages") }} @foreach(\App\Language::active()->orderBy('order')->get() as $i => $lang) {{ trans($lang->name) }} @if($lang->direction == 'rtl') RTL @endif @if($lang->code == get_default_language()) {{trans('admin.SiteLanguage')}} @endif @endforeach {{ __("Disabled Languages") }} @foreach(\App\Language::where('active', 0)->orderBy('code')->get() as $i => $lang) {{ trans($lang->name) }} @if($lang->direction == 'rtl') RTL @endif @endforeach {{ trans('admin.edit') }} : {{ trans($current_language->name) }} @if($locale != 'en')({{$trans_count}}/{{$total_count}})@endif {{__('Send Translation')}} @if(count($translations)) @csrf @foreach($translations as $slug => $translation) {{ $translation['default'] }} direction == 'rtl')dir="rtl"@endif id="{{$slug}}" name="{{$slug}}" value="{{$translation['translation']}}"> @endforeach {{__('Save')}} @endif @endsection @section('footer') @endsection