@extends("admin/layout") @section("content")
Premium Demo

Photos in Gallery: {{ $gallery->galleries_name }}

@if($photos->isEmpty())
No images exist in this gallery.
@else @foreach ($photos as $photoImage) @endforeach
Title Description Image Location Category Name Upload Date Privacy Status
{{ $photoImage->title }} {{ $photoImage->description }} {{ $photoImage->location }} {{ $photoImage->category->category_name ?? 'Uncategorized' }} {{ date('d-m-Y', strtotime($photoImage->upload_date)) }} {{ $photoImage->privacy_status == 1 ? 'Private' : 'Public' }}
@foreach ($photos->getUrlRange(1, $photos->lastPage()) as $page => $url) {{ $page }} @endforeach
Page {{ $photos->currentPage() }} of {{ $photos->lastPage() }}
@endif
@endsection