@extends('cms.application') @section('content')
@if($galleries->count() == 0)
@else
Video Galleries
@foreach($galleries as $key => $gallery)
{{ $gallery->title }}

{{ number_format(count($gallery->videos))}}

@endforeach
@endif
@stop