@extends('layouts.app') @section('title', $gallery->title . ' - Photo Gallery') @section('content')

{{ $gallery->title }}

{{ $gallery->published_at ? $gallery->published_at->format('F d, Y') : '' }}

@if($gallery->google_drive_folder_link) @php // Extract folder ID from Google Drive link preg_match('/folders\/([a-zA-Z0-9_-]+)/', $gallery->google_drive_folder_link, $matches); $folderId = $matches[1] ?? null; @endphp @if($folderId)
View Full Folder: Open in Google Drive
@else
Invalid Google Drive folder link.
@endif @else

No folder link provided for this album.

@endif
@endsection