@extends('layouts.app', [ 'class' => 'notifications index table-index', ]) @section('content') @include('partials._page-title', [ 'title' => 'Gerenciar Notificações', 'desc' => 'Adicione, edite ou exclua notificações conforme necessário', ])
@include('partials._alert')
@include('partials._filters')
@if ($notifications->count())
@foreach ($notifications as $notification) @endforeach
Id Nome Usuário Data de Criação Data de Atualização
{{ $notification->id }} {{ $notification->name }} {{ $notification->user_name }} {{ $notification->created_at->format('d/m/Y H:i') }} {{ $notification->updated_at->format('d/m/Y H:i') }}
{{ $notifications->appends(Request::except('page'))->links() }}
{{ $notifications->count() * $notifications->currentPage() }} / {{ $notifications->total() }}
@else
Nenhuma notificação cadastrada
@endif
@endsection