@extends('admin.layouts.master') @section('page-title'){{$page}}@endsection @section('menu'){{$menu}}@endsection @section('content')

{{__('message.notifications')}}

{{__('message.notifications').' '.__('message.list')}}

@if($notifications)
    @foreach($notifications as $n)
  • {{$n['title']}} {{timeAgoByTimeStamp($n['created_at'])}}
    {!!$n['description']!!}
  • @endforeach
{!!$pagination!!} @else {{__('message.no_notifications_found')}} @endif
@endsection