@extends('layouts.app') @section('breadcrumb') @stop @section('content')

{!! trans('messages.filter') !!} {!! trans('messages.notification') !!}

{!! Form::open(['url' => 'filter','id' => 'notification-filter-form','data-no-form-clear' => 1]) !!}
{!! Form::select('status',['read' => trans('messages.read'),'unread' => trans('messages.unread'),'all' => trans('messages.all')],'unread',['class'=>'form-control show-tick','title'=>trans('messages.select_one')])!!}
{!! Form::close() !!}

{!! trans('messages.list_all') !!} {!! trans('messages.notification') !!}

@include('global.datatable',['table' => $table_data['notification-table']])
@stop