@extends('layouts.app')
@section('content')
@include('includes.filters')
{{ trans('interface.total-results') }}
{{ trans_choice('interface.count', count($videos)) }}
@if(count($videos) > 0)
@foreach($videos as $key => $video)
@if($year != $video->video->year_id || $season != $video->video->season_id)
{{ $video->video->season->prefisso }} {{ $video->video->year->year }}
@endif
{{ $video->video->collection->collection }}
@if(App::getLocale() == 'en')
@else
@endif
@if((($key + 1) % 3) === 0)
@endif
@endforeach
@else
{{ trans('interface.empty-list') }}
@endif
@include('includes.video-wrapper')
@endsection