@extends('themes.base.layout') @section('title', 'Gallery Admin') @section('breadcrumb') @endsection @section('content')
@if (count($albums) == 0)

@lang('admin.no_albums_title')

@lang('admin.no_albums_text')

@lang('admin.create_album')

@else @foreach ($albums as $album) @endforeach
{{ $album->name }}@if ($album->is_private) @endif

{{ $album->description }}

{{ $album->photos_count }} {{ trans_choice('admin.stats_widget.photos', $album->photos_count) }}

@lang('forms.edit_action') @lang('forms.delete_action')
{{ $albums->links() }}
@endif
@endsection