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

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

@endforeach
{!!$galleries->render() !!}
@endif
@stop