@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) # Title Body Created At Actions @php $i = 1; @endphp @foreach(@$notifications as $notification) {{ @$i}} {{ @$notification->title}} {{@$notification->body}} {{ date('Y-m-d h:i a',strtotime($notification->created_at)) }} Edit Delete @php $i++; @endphp @endforeach @else No Record Found @endif @endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection