@extends('layouts.app') @section('content')

{{trans('lang.notification_plural')}}|{{trans('lang.notification_desc')}}

@include('flash::message')
@if(count($notification)>0) @foreach ($notification as $key=>$label) @endforeach @else @endif
ID Title Message Date
{{ $key + 1 }} {{ $label->title }} {{ $label->message }} {{ $label->created_date }}
No record found!
@endsection