@extends('layouts.admin') @section('title', 'Notifications') @section('content')

Notifications

All Notification listing Add

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @foreach($data as $datas) @endforeach
ID Title Message User Type Date Action
{{$datas->id}} {{$datas->title}} {{$datas->message}} {{$datas->type}} {{$datas->created_at}} {{ Form::open(array('url' => 'admin/notifications/' . $datas->id, 'class' => 'pull-right')) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::submit('Delete', array('class' => 'btn btn-danger')) }} {{ Form::close() }}
ID Title Message User Type Date Action
@endsection