@extends('titan::layouts.admin') @section('content')

List All Photo Albums

@include('titan::admin.partials.info') @include('titan::admin.partials.toolbar') @foreach ($items as $item) @endforeach
Name Total Photos Cover Photo Created Action
{{ $item->name }} {{ $item->photos->count() }} @if($item->cover_photo) @endif {{ $item->created_at->format('d M Y') }}
{!! action_row($selectedNavigation->url, $item->id, $item->name, [['image' => '/admin/photos/show/'.$item->id], 'edit', 'delete'], false) !!}
@endsection