@extends('backEnd.master') @section('styles') @endsection @section('mainContent') @php $form_type = ''; if(\Session::has('language_form')){ $form_type = \Session::get('language_form'); } @endphp

{{ __('language.language_list') }}

@if (permissionCheck('languages.store')) @endif
@foreach($languages as $key=>$language) @endforeach
{{ __('common.sl') }} {{ __('common.name') }} {{ __('language.code') }} {{ __('language.RTL') }}/{{__('language.LTL')}} {{ __('common.active') }} {{ __('common.action') }}
{{ $key+1 }} {{ $language->name }} {{ $language->code }} @if($language->rtl == 1) {{__('language.RTL')}} @else {{__('language.LTL')}} @endif
@include('backEnd.partials.delete_modal') @endsection @push('scripts') @endpush