@extends('index') @section('content')
@include('commons.slideshow', ['slides' => $slides, 'style' => 'featured']) @include('commons.channel', ['channels' => $channels])

{{ __('web.CATEGORIES') }}

@foreach ($podcasts->categories as $index => $category) @endforeach
@if(isset($podcasts->regions) && count($podcasts->regions))

{{ __('web.BY_LOCATION') }}

    @foreach ($podcasts->regions as $index => $item) {{$item->name}} @endforeach
@endif @if(isset($podcasts->countries) && count($podcasts->countries))

{{ __('web.BY_COUNTRY') }}

@foreach ($podcasts->countries as $index => $item) @endforeach
@endif @if(isset($podcasts->languages) && count($podcasts->languages))

{{ __('web.BY_LANGUAGE') }}

    @foreach ($podcasts->languages as $index => $item) {{$item->name}} @endforeach
@endif
@endsection