{{-- Flash Messages --}} @if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif {{-- Filters and Search --}}
{{-- Search --}}
{{-- Filters --}}
@if ($search || $showMissingOnly || $showTranslatedOnly) @endif
{{-- Table --}}
@forelse($records as $record) @empty @endforelse
{{ t('status') }} {{ t('actions') }}
{{ $record['key'] }}
{{ Str::limit($record['english_value'], 100) }}
@if ($editingKey === $record['key'])
@else @if (empty($record['value'])) {{ t('not_translated') }} @else
{{ Str::limit($record['value'], 100) }}
@endif @endif
@if (empty($record['value'])) {{ t('missing') }} @else {{ t('completed') }} @endif @if ($editingKey !== $record['key']) @endif
{{ t('no_results_found') }}
{{-- Pagination --}} @if ($records->hasPages())
{{ $records->links() }}
@endif