@extends('backend.layouts.app') @section('title') {{ __('notifications') }} @endsection @section('breadcrumbs')

{{ __('notifications') }}

@endsection @section('content')

{{ __('notifications') }}

@if ($notifications->count() > 0) @foreach ($notifications as $notification) @php $class = ['callout-danger', 'callout-info', 'callout-warning', 'callout-success']; $rand_keys = array_rand($class, 2); @endphp
{{ $notification->data['title'] }}!
{{ $notification->data['title'] }}
@endforeach @else
@endif
{{ $notifications->links() }}
@endsection