@extends('admin.layouts.app') @section('container', 'dashboard-container-lg') @section('section', d_trans('Settings')) @section('title', d_trans('Languages')) @section('header_title', d_trans('Languages')) @section('back', route('admin.settings.index')) @section('create', route('admin.settings.languages.create')) @section('content')
@forelse($languages as $language) @empty @include('admin.partials.empty-table', ['colspan' => 7]) @endforelse
{{ d_trans('Logo') }} {{ d_trans('Name') }} {{ d_trans('Code') }} {{ d_trans('Direction') }} {{ d_trans('Created date') }}
{{ $language->trans->name }} {{ $language->trans->name }} @if ($language->isDefault()) {{ d_trans('(Default)') }} @endif {{ strtoupper($language->code) }} {{ $language->getDirection() }} {{ dateFormat($language->created_at) }}
@push('top_scripts') @endpush @push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection