@extends('layouts.app') @section('title','Video Library') @section('content')

Videos

@foreach($videos as $video)
{{ $video->title }}

{{ \Illuminate\Support\Str::limit($video->description, 100) }}

@endforeach
@endsection