@section('content')

{{ $neighborhood->name }} Pictures

Add a new Picture
@if($galleries) @foreach($galleries as $gallery) @endforeach @else @endif
ID Picture Title Name Order Is Cover Last Updated Actions
{{ $gallery->picture_id }} {{ $gallery->title }} {{ $gallery->file_name }} {{ $gallery->pivot->sort_order }} {{ $gallery->pivot->is_cover == '1' ? 'Yes' : 'No' }} {{ date('m/d/y H:i',strtotime($gallery->updated_at)) }} Edit {{ Form::open(array('route' => array('admin.galleries.destroy', $gallery->picture_id), 'method' => 'DELETE')) }} {{ Form::hidden('neighborhood_id', $neighborhood->neighborhood_id) }} {{ Form::close() }}
No gallerys yet.
@endsection