@extends('chat.layout') @section('title',"Videos") @section('page-name',"Videos") @section('page-detail',"All Videos Information") @section('body')
@if(session('success')) @endif @if($videos->isEmpty())

No Videos Added Yet!

@else
@foreach($videos as $video)
{{ Str::limit($video->title, 40) }}

{{ Str::limit($video->description, 50) }}

{{ Str::limit($video->channel_name, 20) }} {{ $video->created_at->format('M d, Y') }}
@endforeach
{{ $videos->links() }}
@endif
@endsection @section('custom-scripts') @endsection