@extends('layouts._includes.admin.Header') @section('titulo', 'Lista de Notícias') @section('conteudo')
Lista de Notícias
@foreach ($noticias as $noticia) @csrf @method('delete') @endforeach
ID TÍTULO STATUS CATEGORIAS DATA CRIAÇÃO IMAGENS ACÇÕES
{{ $noticia->id }} {{ Str::limit($noticia->vc_titulo, 40) }} @if($noticia->vc_status == 'publicada') Publicada @elseif($noticia->vc_status == 'rascunho') Rascunho @else Oculta @endif @foreach($noticia->categorias as $categoria) {{ $categoria->vc_nome }} @endforeach {{ $noticia->created_at->format('d/m/Y H:i') }} {{ $noticia->imagens->count() }}
@if (session('noticia.eliminar.true')) @endif @if (session('noticia.cadastrar.true')) @endif @if (session('noticia.editar.true')) @endif @if (session('noticia.purgar.true')) @endif @if (session('noticia.restaurar.true')) @endif @if (session('imagem.remover.true')) @endif @endsection