@extends('layouts.admin') @section('title', 'View Gallery') @section('content')

{{ $gallery->title }}

{{ $gallery->formatted_date }} @if($gallery->domain) {{ $gallery->domain->full_domain }} @endif

Edit Back to Galleries
Gallery Images
@if($gallery->images && count($gallery->images) > 0)
@foreach($gallery->images as $image)
@endforeach
@else

No images in this gallery

@endif
Gallery Details
Title:
{{ $gallery->title }}
Date:
{{ $gallery->formatted_date }}
Images:
{{ $gallery->images ? count($gallery->images) : 0 }}
Status:
@if($gallery->is_active) Active @else Inactive @endif
Sort Order:
{{ $gallery->sort_order }}
@if($gallery->domain)
Domain:
{{ $gallery->domain->full_domain }}
@endif
Description:
@if($gallery->description) {{ $gallery->description }} @else No description provided @endif
@endsection @push('styles') @endpush