@extends('layouts.user.base') @section('page-title') Notifications @endsection @section('content')
@foreach ($notifications as $notification) @endforeach
Subject Sender Date Status
{{ $notification->subject }}

{{ config('app.name') }}

{{ formatDateTime($notification->created_at) }}

{{ $notification->status()->message }}
@endsection @section('scripts') @endsection