@extends('website.layouts.master') @section('title', __('latest_movies')) @section('content') @php $selectedGenre = request()->get('genre') ?? ''; @endphp

{{ isset($country) ? __('tv_series_from') . ' ' . $type : ucwords($type) . ' ' . __('tv_series') }}

@include('website.tv_show.partials.filter')
@include('website.tv_show.partials.tv_show_cards', [ 'videos' => $videos, ])
@if ($videos->isEmpty())
{{__('image')}}

{{ __('no_movies_found') }}

@endif
@endsection