@extends('backend.layouts.main') @section('title') Gallery Details @endsection @section('content')

Gallery Details: {{ $gallery->title_en }}

Basic Information

Title (English):
{{ $gallery->title_en }}
Title (Nepali):
{{ $gallery->title_np ?? 'Not provided' }}
External Link:
@if ($gallery->links) {{ $gallery->links }} @else Not provided @endif
Display Order:
{{ $gallery->display_order }}

Status Information

Status:
@if ($gallery->is_published) Published @else Draft @endif
Featured:
@if ($gallery->is_featured) Featured @else No @endif
Created:
{{ $gallery->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $gallery->updated_at->format('M d, Y H:i') }}

Featured Image

@if ($gallery->featured_image) {{ $gallery->title_en }} @else
No featured image available
@endif

Gallery Images

@if (!empty($gallery->images))
@foreach ($gallery->images as $image) @endforeach
@else
No images in this gallery
@endif
@endsection