@extends ('layouts.admin') @section ('content')
Library list
Library details

Contents of type "{{ $library->name }}" version {{ $library->major_version . '.' . $library->minor_version . '.' . $library->patch_version}}

{{ $paginator->onEachSide(5)->links() }} Content {{ $paginator->firstItem() }} - {{$paginator->lastItem()}} of {{$paginator->total()}} @if($listAll) ( {{ $latestCount }} latest version ) @else ( {{ $latestCount }} displayed, {{ $paginator->count() - $latestCount }} hidden ) @endif @foreach($paginator->getCollection() as $content) @if($listAll || $content['isLatest'] === true) @endif @endforeach
Id Title Created Updated ↓ Language License Published Listed Has lock Latest
{{ $content['item']->id }} {{ $content['item']->title }} {{ $content['item']->created_at->format('Y-m-d H:i:s e') }} {{ $content['item']->updated_at->format('Y-m-d H:i:s e') }} {{ $content['item']->language_iso_639_3 }} {{ $content['item']->license }} {{ $content['item']->isPublished() ? 1 : 0 }} {{ $content['item']->isListed() ? 1 : 0 }} {{ $content['item']->hasLock() ? 1 : 0 }} {{ $content['isLatest'] !== null ? ($content['isLatest'] ? 'Yes' : 'No') : '' }}
{{ $paginator->onEachSide(5)->links() }}
@endsection