@extends('layouts.app') @section('content')

VOD Management

@if ($message = Session::get('success'))

{{ $message }}

@endif @foreach ($videos as $key => $video) @endforeach
Video ID Video Title Image Language Schedule Downloadable Action
{{ $video->video_id }} {{ $video->video_name }} {{ $video->default_language }} {{ (new \App\Http\Helper)->date_format($video->start_date)." - ".(new \App\Http\Helper)->date_format($video->end_date) }}
@if($video->status == 'published') @endif
Edit @if($video->status == 'unpublished') UnPublished @else Published @endif Geo Restriction
@include('elements.groups') {!! $videos->appends($append)->render() !!} @endsection