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

{{ __('Notifications') }}

@if($notifications->count()) @foreach($notifications as $notification)
{!! $notification->data['text'] !!}
@if(!$notification->read_at) @endif
@endforeach @else
{{ __('There are no unread notifications.') }}
@endif
@endsection