@extends('admin.layouts.app') @section('header', 'Notification') @section('content')

Notification List

Add New
@include('flash::message') @foreach ($notification as $item) @endforeach
Action Title Message Image Send Date
{{ Form::open([ 'url' => route('admin.notification.destroy', $item->id), 'method' => 'Delete', 'class' => 'pull-left' ]) }} {{ Form::close() }} {{ $item->title }} {{ $item->message }} {{ $item->created_at }}
@endsection @push('scripts') @endpush