@extends('backend.layouts.master') @section('title','E-SHOP || All Notifications') @section('main-content')
@include('backend.layouts.notification')
Notifications
@if(count(Auth::user()->Notifications)>0) @foreach ( Auth::user()->Notifications as $notification) @endforeach
# Time Title Action
{{$loop->index +1}} {{$notification->created_at->format('F d, Y h:i A')}} {{$notification->data['title']}}
@csrf @method('delete')
@else

Notifications Empty!

@endif
@endsection @push('styles') @endpush @push('scripts') @endpush