@extends('admin.layouts.master') @section('content') @include('admin.toasts.toast')
@csrf

Adicionar Foto à Galeria: {{ $gallery->title }}

ID da Galeria: {{ $gallery->id }}


@error('image')
{{ $message }}
@enderror
@error('caption')
{{ $message }}
@enderror
Voltar para Galerias

Fotos Atuais da Galeria

@if ($gallery->photos->count() > 0)
@foreach ($gallery->photos as $photo)
{{ $photo->caption ?? 'Foto da galeria' }}

Legenda: {{ Str::limit($photo->caption, 50) }}

@csrf @method('DELETE')
@endforeach
@else

Nenhuma foto adicionada a esta galeria ainda.

@endif
@endsection