@extends('website.layouts.master') @section('title', $type . '-' . __('tv_channel')) @section('content')
{{ __('showing_live_tv') }}
{{ __('clear') }} @php $selectedCategory = request()->get('category_id') ?? ''; @endphp
{{ __('categories') }}
    @foreach (liveTvCategories() as $category)
  • id == $selectedCategory ? 'checked' : '' }} class="filter-category">
  • @endforeach
@php $selectedCountry = request()->get('country') ?? ''; @endphp
{{ __('country') }}
    @foreach (get_all_countries() as $index => $country)
  • slug == $selectedCountry ? 'checked' : '' }} value="{{ $country->id }}">
  • @endforeach

{{ $type ? $type : __('live_tv_all') }}

@include('website.tv_channel.partials.channel_cards')
@endsection @push('js') @endpush