@php $VerEditor = auth()->user()->can('Comunicados - Visor') || auth()->user()->can('Comunicados - Editor') @endphp @if($VerEditor) @extends('layouts.app') @section('tituloModulo', 'COMUNICADOS') @section('contenido') @can('Comunicados - Editor')
@endcan
@forelse ($datos as $item)
{{ $item->titulo_comu }}
{{ $item->titulo_comu }}

{{ date("d/m/Y", strtotime($item->fecha_hora_comu)) }}

@can('Comunicados - Editor')
@csrf
@endcan
@empty

No hay comunicados por ahora

@endforelse
@endsection @endif