@extends('layouts/contentLayoutMaster') @section('title', 'Application Notifications') @section('vendor-style') {{-- vendor css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@if(@$notifications->count() > 0)
@php $i = 1; @endphp @foreach(@$notifications as $notification) @php $i++; @endphp @endforeach
# Title Body Created At Actions
{{ @$i}} {{ @$notification->title}} {{@$notification->body}} {{ date('Y-m-d h:i a',strtotime($notification->created_at)) }}
@else
No Record Found
@endif
@endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection