@extends('layouts.back') @section('titulo', 'Alertas') @section('page_header','Painel') @section('content')

Alertas

@can('create', \App\Alerta::class) @endcan @foreach ($alertas as $item) @endforeach
# Tipo Título Data Criação Ações
{{$item->id}} {{$item->tipo}} {{$item->titulo}} {{date('d/m/Y', strtotime($item->created_at))}}
@can('update', $item) @endcan @can('delete', $item)
{!! csrf_field() !!}
@endcan
@endsection @component('components.outros.configuracao-data-href-index', ['tabela' => 'alertas']) @endcomponent