@extends('highSuperAdmin.layout') @section('title',"Videos") @section('page-name',"Videos") @section('page-detail',"Manage Videos") @section('pagelink', 'youtubevideos') @section('body')
@if(session('success')) @endif @if($videos->isEmpty())

No Videos Added Yet!

@else
@foreach($videos as $video) @endforeach
Video Channel Date Added Action
Thumbnail
{{ Str::limit($video->title, 50) }}
{{ Str::limit($video->description, 60) }}
{{ $video->channel_name }} {{ $video->created_at->format('m-d-y') }}
{{ $videos->links() }}
@endif
@endsection @section('custom-scripts') @endsection