@extends('layouts.dashboard', ['menu_activo' => 'notificacion', 'menu_superior' => 'administrar']) @section('contenido')

Notificaciones

Notificaciones

@if($notificaciones->count() == 0)

No hay notificaciones

@else
@foreach($notificaciones->sortByDesc('created_at') as $notificacion) @endforeach
Titulo Contenido Fecha Link Eliminiar
{{$notificacion->titulo}} {{$notificacion->contenido}} {{$notificacion->created_at->format('d/m/Y H:i')}} @include('ayuda.eliminar', ['id' => $notificacion->id, 'ruta' => url('admin/notificacion', $notificacion->id)])
@include('ayuda.links', ['link' => $notificaciones]) @endif
@endsection @section('scripts') @endsection