@extends('cms.application') @section('content')
{{--
--}} @if(empty($gallery->{$gallery->type}))
@else
Media For {{ $gallery->title }}
@foreach($gallery->{$gallery->type} as $key => $med)
@if($gallery->type=='photos') @endif @if($gallery->type=='videos') @endif @if($gallery->type=='audio') {{-- --}} @endif
{{$med->created_at->format('dS M Y')}}
{{--

@php echo wordwrap($med->content,30,"
") @endphp

--}}

{{$med->content}}

@endforeach
@endif {{--
--}}
@stop