@extends('site.inner') @section('title') {!! label('lbl_videos_gallery') !!} @endsection @section('breadcrumb') {{ breadcrumb() }} @endsection {{-- @section('page_title') {!! label('lbl_videos_gallery') !!} @endsection --}} @section('page_content')

{{ label('lbl_videos_gallery') }}

@if($albums) @foreach($albums as $keys => $album)
{{ $album->title}} ({{ count($album['videos']) }})
@forelse($album['videos']->slice(0,3) as $key => $video) @empty
{{ label('lbl_no_information') }}
@endforelse
@endforeach
{!! $albums->render() !!}
@else
{{ label('lbl_no_information') }}
@endif
@endsection @section('js-content') @stop