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