@extends('admin.layout') @section('content')

Notification



@foreach($notification as $item) @endforeach
SRL No. Date Title Body Actions
{{ $loop->iteration }} {{ date('d/m/Y H:i', strtotime($item->created_at)) }} {{ $item->title }} {{ $item->body }} {{-- --}} {{-- --}}
{{ method_field('DELETE') }} {{ csrf_field() }}
{!! $notification->appends(['search' => Request::get('search')])->render() !!}
@endsection