@extends('layouts.master') @section('title') @lang('Translations') @endsection @section('breadcrumbs') @component('components.breadcrumb', [ 'title' => __('Translations list'), 'items' => [ ['url' => '#', 'label' => 'Admin'], ] ])@endcomponent @endsection @section('content')
| @lang('Language') | @lang('Total sentences') | @lang('Untranslated sentences') | @lang('Percentage') | @lang('Actions') |
|---|---|---|---|---|
| {{basename($language, '.json')}} | {{$data['all']}} | {{$data['untranslated']}} | @if($data['untranslated'] > 0) {{number_format(100 - ($data['untranslated'] / $data['all'] * 100), 2)}}% @else 100% @endif | @component('components.dropdown', [ 'items' => [ ['url' => route('translations.view', ['lang' => basename($language, '.json')]), 'label' => __('View'), 'can' => 'all_access'], ], ])@endcomponent |