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

List All Photos

@include('titan::admin.partials.info') @foreach ($items as $item) @endforeach
Name Category Image Created Action
{{ $item->name }} {{ $item->is_cover? '(Cover)':'' }} {{ ($item->photoable)? $item->photoable->name:'' }} {{ $item->created_at->format('d M Y') }} {!! action_row($selectedNavigation->url, $item->id, $item->name, ['delete']) !!}
@endsection