@extends('layouts._includes.admin.Header') @section('titulo', 'Lista de Imagens da Galeria') @section('conteudo')
Lista de Imagens da Galeria
@foreach ($imagens as $imagem) @csrf @method('delete') @endforeach
ID IMAGEM ÁLBUM LEGENDA STATUS DATA CRIAÇÃO ACÇÕES
{{ $imagem->id }} {{ $imagem->album->vc_titulo }} {{ Str::limit($imagem->vc_legenda ?? 'Sem legenda', 30) }} @if ($imagem->vc_status == 'visivel') Visível @else Oculta @endif {{ $imagem->created_at->format('d/m/Y H:i') }}
@if (session('imagem.eliminar.true')) @endif @if (session('imagem.cadastrar.true')) @endif @if (session('imagem.cadastrar.false')) @endif @if (session('imagem.editar.true')) @endif @if (session('imagem.restaurar.true')) @endif @endsection