@extends('admin.layouts.admin') @section('title', 'Daily Attendance List') @push('css') @endpush @section('content')

Notifications

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter

Search Notification

Clear

Lists

@foreach($notifications as $notification) @endforeach
SL No. Employee ID Name Area Name Designation Title Body Date
{{ ($notifications->currentPage() - 1) * $notifications->count() + $loop->iteration }} {{ $notification->employee->emp_id ?? '' }} {{ $notification->user->name ?? '' }} {{ $notification->employee->zone_info->name ?? '' }} {{ $notification->employee->designation->name ?? '' }} {{ $notification->notification_title ?? '' }} {{ $notification->notification_body ?? '' }} {{ $notification->created_at->format('d-m-Y H:i') ?? '' }}
@include('admin.sections.footer')
@endsection @section('script') @endsection