@extends("admin.admin_app") @section("content")
{!! Form::open(array('url' => 'admin/live_tv','class'=>'app-search','id'=>'search','role'=>'form','method'=>'get')) !!} {!! Form::close() !!}
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($live_tv_list as $i => $live_tv_data) @endforeach
{{trans('words.live_tv_name')}} {{trans('words.live_tv_logo')}} {{trans('words.video_access')}} {{trans('words.status')}} {{trans('words.action')}}
{{ stripslashes($live_tv_data->channel_name) }} @if(isset($live_tv_data->channel_thumb)) video image @endif {{ $live_tv_data->channel_access }} @if($live_tv_data->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif
@include("admin.copyright")
@endsection