@extends('dashboard.layouts.main') @section('title', getSiteName() . ' - Dashboard - All Static Translates') @section('content')
@if(session('success'))
@endif

{{ __('All Static Translates') }}

@if($translates->isNotEmpty()) @foreach($translates as $translate) @endforeach
{{ __('Language') }} {{ __('Code') }} {{ __('Progress') }} {{ __('Delete') }}
{{ $translate->language()->title }} {{ $translate->language()->code }} {{ $translate->progressCount(true) . '/' . $translate->progressCount() }}
{{--
--}} {{--
Showing {{ $news->count() }} of {{ $news->total() }} articles
--}} {{-- @if($news->hasPages())--}} {{-- {{ $news->onEachSide(0, 2)->links('dashboard.partials.pagination') }}--}} {{-- @endif--}} {{--
--}} @else

{{ __('Translates not found.') }}

@endif
@endsection @section('footer-scripts') @endsection