@extends('backend.layouts.master')
@section('title','All Notifications')
@section('main-content')
@include('backend.layouts.notification')
Notification List
@if(count(Auth::user()->Notifications)>0)
| # |
Time |
Title |
Action |
@foreach ( Auth::user()->Notifications as $notification)
| {{$loop->index +1}} |
{{$notification->created_at->format('F d, Y h:i A')}} |
{{$notification->data['title']}} |
|
@endforeach
@else
Notifications Empty!
@endif
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush