@extends('core::layouts.backend') @section('title','Translation') @section('breadcrumb') @endsection @push('css_stack') {!! library_datatables('css') !!} @endpush @section('layout')

Language / Locale @if(hasRoutePermission('simple_cms.translation.backend.language.add')) @endif

@foreach($locales as $locale) @endforeach
Locale Name
{{ $locale->locale }} {{ $locale->name }} @if($default_locale == $locale->locale) @else ['locale' => $locale->locale]])' title="Set Default Language: {{ $locale->locale .' [ ' . $locale->name . ' ]' }}"> @endif @if(hasRoutePermission('simple_cms.translation.backend.language.edit') && !$locale->trashed()) @endif @if(hasRoutePermission('simple_cms.translation.backend.language.restore') && $locale->trashed()) @endif @if(hasRoutePermission('simple_cms.translation.backend.language.soft_delete') && !$locale->trashed() && ($default_locale !== $locale->locale) ) @endif
{!! $dataTable->table() !!}
@endsection @push('js_stack') {!! library_datatables('js') !!} {!! $dataTable->scripts() !!} {!! module_script('core','js/events.js') !!} {!! module_script('translation','js/index.js') !!} {!! module_script('translation', 'js/language.js') !!} {!! module_script('translation', 'js/translation.js') !!} @endpush