@extends('layout.layout') @section('breadcrumb') Notification @endsection @section('content')
@foreach($notifications as $notification) @endforeach
Date Heure Utilisateur Action Status
{{$notification->created_at->format('Y-m-d')}} {{$notification->created_at->format('H:i')}} {{$notification->user->name}} {{$notification->message}} {{($notification->status==0)?'En cour':'lu'}}
@endsection