@extends('layouts.master') @section('title', __("title.notification")) @section('pageContent') @include('layouts.breadcrumb', ['title' => __("breadcrumb.notification_title"), 'subtitle' => __("breadcrumb.notification_subtitle")])
@foreach($notifications as $notification)
@if(!empty($notification->data['link'])) @endif
{{ $notification->data['title'] }}

{{ $notification->created_at->format('d/m/Y à H:i') }}

{!! $notification->data['message'] !!}

@if(!empty($notification->data['link']))
@endif
@endforeach
{{ $notifications->withQueryString()->links() }}
@endsection @section('scripts') @endsection