@extends('admin.app') @section('content')
@include('errors.alert', ['errors' => $errors->subcollection_store]) @include('errors.alert', ['errors' => $errors->subcollection_update])
@forelse($collections as $collection)

{{ $collection->name }}

@forelse($collection->subcollections as $subcollection)
{{$subcollection->name}}
@empty
Esta colección no tiene subcolecciones todavía
@endforelse Añadir subcolección
@empty
No hay colecciones que mostrar
@endforelse
{!! $collections->appends(Input::get('search'))->render() !!}
@include('admin.collections.modals.form') @include('admin.collections.modals.destroy-confirmation') @include('admin.subcollections.modals.form') @include('admin.subcollections.modals.destroy-confirmation') @endsection @section('script') {!! Html::script('js/panels-layout.js') !!} {!! Html::script('js/admin/collections/index.js') !!} @endsection