@extends("blogetc_admin::layouts.admin_layout")
@section("content")
Admin - Uploaded Images
You can view all previously uploaded images here.
It includes one thumbnail per photo - the smallest image is selected.
@foreach($uploaded_photos as $uploadedPhoto)
Image ID: {{$uploadedPhoto->id}}: {{$uploadedPhoto->image_title ?? "Untitled Photo"}}
Uploaded {{$uploadedPhoto->created_at->diffForHumans()}}
@if($smallest)
@else
No image found
@endif
@endforeach
{{$uploaded_photos->appends( [] )->links()}}
@endsection