Share your videos with our community.
{{ $category->name }} {{ $category->description }}
|
{{ $category->videos->where('status_id', 1)->count() }} Videos
|
@if( $category->videos->where('status_id', 1)->count() == 0 )
No Videos | @else
@foreach($category->videos->where('status_id', 1)->sortByDesc('created_at')->take(1) as $video)
{{ str_limit($video->title, 20) }} {{ $video->created_at->diffForHumans() }}
@endforeach
|
@endif
There are no videos in this category yet.
To share your YouTube video please click on add video in the right hand navigation.