@extends('layouts.index') @section('estilos') @stop @section('menu') @include('menu.index') @stop @section('content')

{{'Noticias'}}

Nueva
@foreach ($noticias as $noticia) @php($index=$loop->iteration) @if ($noticia->estado == "A") @else @endif @endforeach
{{'Fecha'}} {{'Enunciado'}} {{'Usuario'}} {{'Estado'}} {{'Opciones'}}
{{voltear_fecha($noticia->fecha)}} {{$noticia->enunciado}} {{$noticia->nombres." ".$noticia->apellido_paterno}}{{'Activa'}}{{'Inactiva'}}
Detalle @if ($noticia->estado == "A") @else @endif @csrf @method('DELETE')
@foreach ($noticias as $noticia) @php($index=$loop->iteration) @endforeach @stop @section('scripts') @stop