@extends('layouts.frontend') @section('title', 'Notification') @section('content')

Notification

@foreach($notifications as $notification)

{{$notification->message??''}}

{{$notification->created_at??''}}

@php $notification->already_read=1; $notification->save(); @endphp
@endforeach @endsection