@include('common.header_links')
@include('common.header') @include('common.sidebar')

{{ $title }}

Here you can view all your latest notifications and activity updates.
@if(session('error'))
@endif @if(session('success'))
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{ $title }} List

@forelse ($params as $index => $list)
{{ $list->title }}
{{ \Carbon\Carbon::parse($list->created_at)->diffForHumans() }}

{{ $list->message }}

{{ date('d M Y h:i A', strtotime($list->created_at)) }}
@empty

No notifications found

@endforelse
@include('common.footer')
@include('common.script')