@extends('site.layouts.app') @section('title', 'Notifications') @section('content')
@include('site.customer.sidebar')
Notifications @foreach($notifications as $key => $noti) {{-- --}} @endforeach
# Created at Message Action
{{ $key+1 }} {{ $noti->created_at }} {{ $noti->message }} Details @if ($noti->is_read == 1) Read @else UnRead @endif
@endsection