@extends('web.layouts.container') @section('content') {{__('galleries.photos')}} {{__('galleries.videos')}} @if(count($photosGalleries)) @foreach($photosGalleries as $photosGalley) @if($photosGalley[0] ?? null) {{$photosGalley[0]['title']}} @endif @if($photosGalley[1] ?? null) {{$photosGalley[1]['title']}} @endif @if($photosGalley[2] ?? null) {{$photosGalley[2]['title']}} @endif @if($photosGalley[3] ?? null) {{$photosGalley[3]['title']}} @endif @endforeach @endif @if(count($videosGalleries)) @foreach($videosGalleries as $videosGallery) @if($videosGallery[0] ?? null) {{$videosGallery[0]['title']}} @endif @if($videosGallery[1] ?? null) {{$videosGallery[1]['title']}} @endif @if($videosGallery[2] ?? null) {{$videosGallery[2]['title']}} @endif @if($videosGallery[3] ?? null) {{$videosGallery[3]['title']}} @endif @endforeach @endif @endsection @section('inner_js') @endsection