@extends('layouts.main') @section('content') @include('partials.breadcrumb', ['breadcrumbTitle' => 'Notifications'])
@include('notification.filter')
@include('partials.success')
@forelse ($notifications as $notification) @empty @endforelse
# Notification
{{ $number++ }} {!! $notification['description'] !!}
{{ $notifications->appends(['region' => request('region'), 'site_code' => request('site_code'), 'type' => request('type')])->links() }}
@stop @section('after_scripts') @stop