@extends("admin/layout")
@section("content")
Photos in Gallery: {{ $gallery->galleries_name }}
@foreach ($photos as $photoImage)
Title
Description
Image
Location
Category Name
Upload Date
Privacy Status
@endforeach
{{ $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' }}