@extends('layouts.admin') @section('title', tr('languages')) @section('content-header', tr('languages')) @section('breadcrumb')
  • {{tr('home')}}
  • {{tr('languages')}}
  • @endsection @section('content')
    @include('notification.notify')
    {{tr('languages')}} {{tr('create_language')}}
    @if(count($languages) != 0) @foreach($languages as $i => $language_details) @endforeach
    {{ tr('id')}} {{ tr('language') }} {{ tr('short_name')}} {{ tr('auth_file')}} {{ tr('messages_file')}} {{ tr('pagination_file')}} {{ tr('passwords_file')}} {{ tr('validation_file')}} {{ tr('status')}} {{ tr('action')}}
    {{ $i+1}} {{ $language_details->language}} @if(Setting::get('default_lang') == $language_details->folder_name) @endif {{ $language_details->folder_name}} {{ tr('download_here')}} {{ tr('download_here')}} {{ tr('download_here')}} {{ tr('download_here')}} {{ tr('download_here')}} @if($language_details->status == APPROVED) {{ tr('active')}} @else {{ tr('inactive')}} @endif
    @else

    {{ tr('no_language_found') }}

    @endif
    @endsection @if(Session::has('flash_language')) @section('scripts') @endsection @endif