@extends('admin.layout.master') @section('content')

Notification List

@if(session()->has('success'))
{{ session()->get('success') }}
@else @if(session()->has('error'))
{{ session()->get('error') }}
@endif @endif
@if($notifications) @foreach($notifications as $k=>$notification) @endforeach @endif
Sr.No. Sent On Title To Action
{{$k+1}} {{date('d-m-Y h:i A',strtotime($notification->created_at))}} {{$notification->title}} {{$notification->user_list}}
@endsection