@extends('layouts/contentLayoutMaster') @section('title', 'Application Videos') @section('vendor-style') {{-- vendor css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@if(@$videos->count() > 0)
@php $i = 1; @endphp @foreach(@$videos as $video) @php $i++; @endphp @endforeach
# Title Category Type Url Thumbnail Created At Actions
{{ @$i}} {{ @$video->title}} {{ @$video->videoCategory->name}} {{ @$video->type }} {{ @$video->url }}
@if(@$video->thumbnail) Avatar @endif
{{ date('Y-m-d h:i a', strtotime($video->created_at)) }}
@else
No Record Found
@endif
@endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection