@extends('admin.layouts.main') @section('title', ___('Notifications (' . $totalUnread . ')')) @section('header_buttons') {{ ___('Mark All as Read') }}
@csrf @method('DELETE')
@endsection @section('content')
@forelse ($notifications as $notification) @empty @endforelse
{{ ___('Type') }} {{ ___('Title') }} {{ ___('Created') }}
@if ($notification->link) @endif
{!! notification_icon($notification->type) !!}
@if ($notification->link)
@endif
@if ($notification->link) @endif {{ $notification->title }} @if ($notification->link) @endif @if (!$notification->status) @endif
{{ $notification->created_at->diffforhumans() }}
{{___('No Data Found.')}}
@endsection