@extends('layouts.admin.base') @section('top-script') @endsection @section('page-title') Notifications @endsection @section('content')
@foreach ($notifications as $n) @endforeach
Subject Reciever Date Status Action
{{ $n->subject }}

{{ $n->user->name }}

{{ formatDatetime($n->created_at) }}

{{ $n->status()->message }}
Showing {{ $notifications->count() }} of {{ $notifications->total() }} notifications
{{ $notifications->links() }}
@endsection @section('scripts') @endsection