@extends('buyer.layout') @section('title') Admin Notification Page @endsection @section('frontend-content')

📩 Enquiry Alerts

@foreach ([1, 2, 3] as $index)

Enquiry - RFID00{{ $index }}

Sub-Category: Headwear
Buyer: John Doe (john{{ $index }}@example.com)
Received: {{ now()->subMinutes($index * 8)->format('d M Y, h:i A') }}

Status : @if ($index == 1) Unread @else Read @endif View
@endforeach
@foreach ([1, 2, 3] as $index) @endforeach
RFID Sub-Category Buyer Email Received Status Actions
RFID00{{ $index }} Socks John Doe john{{ $index }}@example.com {{ now()->subMinutes($index * 10)->format('d M Y, h:i A') }} @if ($index == 1)

Unread

@else

Read

@endif
View
@php $user = Auth::user(); @endphp @endsection