@extends('layouts.base') @section('content')
@foreach (Auth::user()->unreadNotifications as $notification)
@if($notification->type=="App\Notifications\ApprovalAssign") AA @elseif($notification->type=="App\Notifications\ApprovalRejected") AR @elseif($notification->type=="App\Notifications\ApprovalGranted") AG @endif
{{$notification->data['title']}} ({{\Carbon\Carbon::parse($notification->created_at)->format('d/m/Y')}} )
{{$notification->data['message']}} [View]

{{--
--}} @endforeach
@endsection @section('custom_scripts') @endsection