@extends('frontend::layouts.master') @section('title') {{ $data['name'] ?? '' }} @endsection @section('content')
@php if ($data['stream_type'] == 'Embedded') { $videodata = Crypt::encryptString($data['embedded']); } else { $videodata = $data['server_url']; } @endphp @include('frontend::components.section.thumbnail', [ 'data' => $videodata, 'embedded' => $data['embedded'], 'type' => $data['stream_type'], 'slug' => $data['slug'], 'thumbnail_image' => $data['thumbnail_image'], 'dataAccess' => $data['access'], 'plan_id' => $data['plan_id'], 'content_type' => 'livetv', 'content_id' => $data['id'], 'content_video_type' => 'video', ])
@if (!empty($data['category'])) {{ $data['category'] }} @endif

{{ $data['name'] }}

{!! Str::limit(strip_tags($data['description']), 300) !!} @if(strlen(strip_tags($data['description'])) > 300) {{ __('messages.read_more') }} @endif

@if (!empty($suggestions))

{{ __('frontend.suggested_channels') }}

@foreach ($suggestions as $suggested) @endforeach
@endif
@endsection