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