{{ session('status') }}
@endif
{{ __('app.catalog_title') }}
{{ __('app.catalog_lede') }}
{{ __('app.catalog_empty') }}
@else
@php($languageNames = [
'fr' => 'Français', 'en' => 'English', 'es' => 'Español', 'de' => 'Deutsch',
'it' => 'Italiano', 'pt' => 'Português', 'nl' => 'Nederlands', 'ja' => '日本語',
'ru' => 'Русский', 'pl' => 'Polski', 'sv' => 'Svenska',
])
@php($languages = $feeds->flatten(1)->pluck('lang')->unique()->sort()->values())
@foreach ($feeds->keys() as $category)
@endforeach
@foreach ($feeds as $category => $items)
@foreach ($items as $item)
@endforeach
@endforeach
{{ $item['title'] }}
{{ $category }}
{{ $item['description'] ?: $item['url'] }}
{{ strtoupper($item['lang']) }}
@if (in_array($item['url'], $subscribedUrls))
✓ {{ __('app.added') }}
@else
@endif
{{ __('app.no_match') }}
@endif