@extends('theme::layouts.app', ['alias' => 'Notifications']) @section('theme::title', __('seo.notification')) @section('theme::content')

{{ __('notification.page.title') }}

@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($error = Session::get('error'))
{{ $error }}
@endif @if($notifications->count() > 1) @endif
@forelse($notifications as $notification) @empty @endforelse
{{ __('notification.page.table.key') }} {{ __('notification.page.table.url') }} {{ __('notification.page.table.send-at') }} {{ __('notification.page.table.action') }}
{{ $notification->key }} @if($notification->url) {{ __('notification.page.url') }} @endif {{ $notification->created_at->diffForHumans() }} {{ __('notification.page.mark') }}
{{ __('notification.page.empty') }}
@endsection